Ternary operator is a short-hand form in term of condition.
For example,
const score = 80;
if(score >= 80) {
console.log("Passed this step.");
} else {
console.log("Do it again.");
}
But re-write in term of the ternary operator.
score >= 80 ? console.log("Passed this step."): console.log("Do it again.");
Top comments (2)
ติดต่อได้ที่ไหน
สวัสดีค่ะ ยังสนใจที่จะติดต่ออยู่ไหมคะ