Strings

 let str='abhi'

undefined

typeof str

'string'

let char='s';

undefined

typeof char

'string'

let num='`23';

undefined

typeof num

'string'

let emp=' ';

undefined

typeof emp

'string'

Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code