this is where i will keep my notes for learing Java Script
this is where i will keep my notes for learing Java Script
Commands:
/* comments */
console.log("hello world") aka print
use semi colon to close out a single line
variables
const youVar = "this is a string";
const yourNum = 10;
const youObject = {firstproperty : 'Hello world'}
Books