Basic code for learning Java Script
These are just the notes for simple learning about code for Java Script.
Checking on the console for String, Number Boolean, null, undefined
// String, Number, Boolean, null, undefined
const name = 'John'
const age = 30;
const rating = 4.5;
const is...
megpamungkas.hashnode.dev8 min read