#javascript
Read more stories on Hashnode
Articles with this tag
...More Snippets from follow along with Netninja //Now to numbers: let radius = 10; const pie = 3.14; console.log(radius, pie); //math operators +,...
.. A quick snippet of my code today //string length console.log(fullName.length); //it counted the space in btw as a character //string...
The comments in the code explain it all // alert("hello world"); // console.log(1);//a function we can use to log out vaues to the console. //a way...
Datatypes are used o hold and store variables. Understanding datatypes is essential to writing javascript code, as every data type behaves...
JavaScript is used to add interactivity and functionalities to websites. It is a programming language and it runs in the web browser. Java script...