“4.1.1. Подробнее о струнах” Ответ

4.1.1. Подробнее о струнах

console.log(typeof 'This is a string');
console.log(typeof "And so is this");

//string
//string
Tough Tortoise

4.1.1. Подробнее о струнах

console.log(42, 17, 56, 34, 11, 4.35, 32);
console.log(3.4, "hello", 45);

//42 17 56 34 11 4.35 32
//3.4 hello 45
Tough Tortoise

4.1.1. Подробнее о струнах

console.log(typeof "17");
console.log(typeof "3.2");

/*What about values like "17" and "3.2"? They look like numbers, 
but they are in quotation marks like strings.
Run the following code to find out./*
Tough Tortoise

4.1.1. Подробнее о струнах

console.log(42000);
console.log(42,000);

//42000
//42 0
Tough Tortoise

Ответы похожие на “4.1.1. Подробнее о струнах”

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

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