Created
June 5, 2020 08:07
-
-
Save alx8437/f5385b3b34af6bab54966fea162ef00a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Расширение объектных литералов | |
let name = "Alex" | |
let soname = "Zel" | |
let obj = {name, soname} | |
console.log(obj) | |
// Также можно создать метод | |
let fullName = function() { | |
return `${this.name} ${this.soname}` | |
} | |
let fullNameAll = {name, soname, fullName} | |
fullNameAll.fullName() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment