mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
181 B
181 B
id | title |
---|---|
4a8846d3-a3c3-4edc-8fa1-a2de76f1094f | JavaScript Conditional (Ternary) Operator |
Syntax
console.log(true ? 1 : 2)
console.log(false ? 1 : 2)