JS_HOME_WORK/16-create-array/start.js
2025-01-31 22:03:46 +01:00

14 lines
396 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/** ЗАДАЧА 16 - Создание массива
*
* 1. Создайте массив с тремя элементами разных типов
*
* 2. Выведите в консоль первый элемент массива
*
* 3. Выведите в консоль длину массива
*/
var array = [1111, 'test', true]
console.log(array[0])
console.log(array.length)