Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alx8437/f5385b3b34af6bab54966fea162ef00a to your computer and use it in GitHub Desktop.
Save alx8437/f5385b3b34af6bab54966fea162ef00a to your computer and use it in GitHub Desktop.
//Расширение объектных литералов
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