“переменная let не определена” Ответ

переменная let не определена


let to_date = to ? moment(to) : null;

Jealous Jay

переменная let не определена

function a () {
    let ar = 1
}

console.log(ar);

//console: TypeError: ar is not defined

/*
let and const are local variables, that means, if declared on function, then you will
not be able to use the variable, you must use it inside the function or declare
the variable in the file and not a local function
*/

function a () {
    let ar = 1
    
    console.log(ar);
}

const ar = 1
console.log(ar);

//console: 1 1
Eager Eel

Ответы похожие на “переменная let не определена”

Вопросы похожие на “переменная let не определена”

Больше похожих ответов на “переменная let не определена” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования