Type of Operator Example

PHOTO EMBED

Fri Mar 11 2022 01:42:19 GMT+0000 (Coordinated Universal Time)

Saved by @Trillzilla #javascript

var x = 12345; 
console.log(typeof x) // number
x = 'string'; 
console.log(typeof x) // string
x = { key: 'value' };
console.log(typeof x) // object
content_copyCOPY