JS_HOME_WORK/12-create-object/start.js
2025-02-05 08:47:22 +01:00

18 lines
520 B
JavaScript
Executable File
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.

/** ЗАДАЧА 12 - Создание объекта
*
* 1. Создайте объект с тремя свойствами:
* - name
* - surname
* - favoriteNumber
*
* 2. Выведите в консоль строку
* "My name is <name> <surname> and my favorite number is <favoriteNumber>"
*/
const obj = {
name: 'Vadim',
surname: 'Fedosenko',
favoriteNumber: '32'
}
console.log("My name is " + obj.name + " " + obj.surname + " " + "and my favorite number is" + " " + obj.favoriteNumber)