2024-05-06 20:40:05 +00:00
|
|
|
---
|
2024-10-30 17:04:36 +00:00
|
|
|
date: 20201112
|
2024-05-06 20:40:05 +00:00
|
|
|
id: 4a8846d3-a3c3-4edc-8fa1-a2de76f1094f
|
|
|
|
title: JavaScript Conditional (Ternary) Operator
|
|
|
|
---
|
|
|
|
|
|
|
|
# Syntax
|
|
|
|
|
|
|
|
``` javascript
|
|
|
|
console.log(true ? 1 : 2)
|
|
|
|
console.log(false ? 1 : 2)
|
|
|
|
```
|