Bind Method Javascript

var obj = { name: "Chaitanya" };

function sayHello(age, profession) {
	return "Hello " + this.name + " is " + age + " and is an " + profession;
}

const bindFunc = sayHello.bind(obj);

console.log(bindFunc(22, "Software Engineer"));
console.log(bindFunc(22, "Bodybuilder"));