how to write and in javascript code example
Example 1: how to write in js
document.write("put your text here!");
Example 2: === javascript
// === means equal value and equal type
var x = 5
// true
x === 5
// false
x === "5"
document.write("put your text here!");
// === means equal value and equal type
var x = 5
// true
x === 5
// false
x === "5"