var status = false;
status === false ? alert('Example1') : alert('Example2');
Can anyone please tell me why it not working as my expectation. Why it not returning Example1?
var status = false;
status === false ? alert('Example1') : alert('Example2');
Can anyone please tell me why it not working as my expectation. Why it not returning Example1?