Skip to content

Instantly share code, notes, and snippets.

View nemiro's full-sized avatar
💭
dm twitter.com/inemiro1

I.Nemiro nemiro

💭
dm twitter.com/inemiro1
View GitHub Profile
const person = {
name: 'Владилен'
}
function info(phone, email) {
console.log(`Имя: ${this.name}, Тел.:${phone}, Email: ${email}`)
}
// Demo
// info.bind(person)('12345', 'v@mail.ru')