#javascript
Read more stories on Hashnode
Articles with this tag
Observe this behaviour "0" == false; // true "0" == ""; // false false == ""; // true "" == []; ...
Due to the rise in popularity of Artificial intelligence, concerns rightly so, have risen about the intelligence of machines and even the...
The this keyword in JavaScript is used as a reference to the scope of the current execution context. What this means is that it represents an...
Object oriented programming is a computer programming pattern that organizes software design around objects and classes rather than function or...
Mistakes and failures are an integral part of programming and life in general. Usually, after a mistake in life, we dust ourselves up and try again,...
JavaScript is single threaded which makes it inherently synchronous, This means code runs line by line on one core of the processor. However if you...