Quick actions

cmd+k|ctrl+k

Navigation

Languages

statement

Snippet info

Language

JavaScript

Visibility

public

Author

pinstudio

Created

2026-02-11T04:45:36.072719Z

Updated

2026-02-11T04:53:01.221232Z

var x =1;
if (x >0 == false) { // conditional express : ture / false
    console.log("x is larger than zero")
}
else {
    let y = 1;
    console.log("x is fail", y);
}
INFO