#beginners
Read more stories on Hashnode
Articles with this tag
Function in JavaScript just like most other languages is here to write less code and eliminate duplication. When we use a function it has to do...
Truthy & False values 路 When we use most of the programming languages or scripting languages we have some values that isn't a boolean value but it works...
Data Types 路 Hey there! 馃憢馃徎 We're now going to explain the data types of JavaScript, I'm only going to talk this time about the data types itself, 鈿狅笍...
String Auto Converting 路 One of the weirdest things that JS do is converting string variable to numbers by itself. When does it convert string to...
Numbers 路 I personally didn't understand how do JS act with number, but after I learnt about it. We have to understand what's the data types of...
Defending Variables 路 Defending variables in JS have its own way. We have three ways to defend a variable let, var, const. VarLetConst ...