How to check whether a data or result is null #javascript #beenumlearning #shorts

preview_player
Показать описание
How to check whether a data or result is null #javascript #beenumlearning #shorts
Рекомендации по теме
Комментарии
Автор

const checkNull= (value => value === null || value === undefined);


console.log(checkNull());
console.log(checkNull(11));
console.log(checkNull("a"));

BEENUMLEARNING