This website requires JavaScript.
Explore
Help
Sign in
alrayyes
/
wiki
Watch
1
Star
0
Fork
You've already forked wiki
0
mirror of
https://github.com/alrayyes/wiki.git
synced
2025-07-11 12:21:47 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
Actions
eaf7f05a68
Branches
Tags
No results found.
wiki
/
content
/
20201112110025-javascript_conditional_ternary_operator.md
Ryan Kes
4ef8371441
Quartz sync: May 6, 2024, 10:40 PM
2024-05-06 22:40:05 +02:00
181 B
Raw
Blame
History
id
title
4a8846d3-a3c3-4edc-8fa1-a2de76f1094f
JavaScript Conditional (Ternary) Operator
Syntax
console
.
log
(
true
?
1
:
2
)
console
.
log
(
false
?
1
:
2
)