JS - Numbers and Math
Initialization
const score = 100
console.log(score) // 100
const balance = new Number(100)
console.log(balance) // [Number: 100]
score is primitive (raw piece of data), balance is an object
javascriptfromscratch.hashnode.dev6 min read