#web-development
Read more stories on Hashnode
Articles with this tag
Why do we need loops? There's a task given to you to display numbers from 1 to 10, both inclusive. How will you do it? Way-1 To console log all...
We use conditionals a lot in our day-to-day life. For example: when our mother asks us to get some groceries, she often says "bring cauliflower from...
What are Datatypes in a programming language? Datatypes define the type of data the variable can store. Based on these datatypes a variable can...
What are Variables? Variables in any programming language are containers of information. It is the name given to the address/location of information...
Where can we write JavaScript? In the HTML page: JavaScript is inserted between <script> and </script> tags in the HTML page. You can place any...