Функция конструктора

function Audio(title){
	this.title = title
  	console.log(this)
}
const v = new Audio('a')
Scary Salamander