Datatypes in Javascript
We all know that Data is piece of information that we often work with in any programming language. So each data has its own type. for ex:
// below are the mostly repeated type of data in JS.
console.log('Nithin')
console.log(23)
console.log(true)
con...
codewithnithin.hashnode.dev1 min read