0
Please I need help on how to output different statements
3 ответов
+ 7
You need to use equality operator "=="
+ 3
let x=10, w='';
x==8? w='very cold': x==9? w='cold': x==10? w='hot': x==11? w='very hot': w='i dont know';
console.log(w);
+ 2
Thanks a lot, I really appreciate. It works