Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Search - "jonsnow"
-
Made a simple college project using Node.Js, MongoDB, React... Wrote everything from scratch, starting from HTML to CSS and Routes even OAuth. No template was used.. Guess what teacher said...
She said I love the second project made using wordpress template because, "It looks amazing and beautiful"
One of the reasons why I hate college...11 -
What the Fun Javascript!!!
'==' in Javascript is supposed to do type conversions, before comparing the two items.
Then...!!7 -
After working at one internship: I have covered the basics of Development.
After trying to publish my own app: I know nothing. I'm Jon Snow of programming.2 -
Today you can even sell a poop at high price by saying "This poop is using Blockchain Technology".. 😑😑
-
How should I format my Indian Address so that I get stickers from devrant...
What should be the Format??6 -
What the Fun Javascript Part 2
With reference to my old rant : https://devrant.com/rants/1445754/...
An explanation to this...
In JS whenever it sees '==' it has a set of rules that it follows before comparing quantities...
One such rule is...
When we compare a number with a boolean using '==' it first converts boolean into number then compares the two quantities...
So in this case..
When we convert true to number we get 1 and when we compare 1 and 2 they are obviously unequal hence we get false...1