- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
JavaScript semicolon issue, find the output , #shorts #dailycoding #javascript #jobs #itjobs
JavaScript's automatic semicolon insertion inserts
a semicolon right after the return statement,
So it's undefined
Current code:
function foo() {
return; //l here semicolon automatically inserted
{
bar: "hello"
};
}
Correct way to write it:
To return the object correctly, put the opening
brace on the same line as return:
function foo() {
return {
bar: "hello"
}
}
so the answer will be undefined
#javascript #coading #findtheoutput #interviewquestions
Видео JavaScript semicolon issue, find the output , #shorts #dailycoding #javascript #jobs #itjobs канала Codelangs
a semicolon right after the return statement,
So it's undefined
Current code:
function foo() {
return; //l here semicolon automatically inserted
{
bar: "hello"
};
}
Correct way to write it:
To return the object correctly, put the opening
brace on the same line as return:
function foo() {
return {
bar: "hello"
}
}
so the answer will be undefined
#javascript #coading #findtheoutput #interviewquestions
Видео JavaScript semicolon issue, find the output , #shorts #dailycoding #javascript #jobs #itjobs канала Codelangs
Комментарии отсутствуют
Информация о видео
21 мая 2025 г. 23:30:21
00:00:18
Другие видео канала





















