Q:

javascript function call with variable


var person = {

    fullName: function() {

    return this.firstName + " " + this.lastName;

    }
}

var person1 = {

  firstName:"John",

    lastName: "Doe"

  }

var person2 = {

  firstName:"Mary",

    lastName: "Doe"
}

	person.fullName.call(person1);  // Will return "John 
	Doe"
 
3
// Define your function
function sayHello(msg){
	console.log("Hello, " + msg);
}

// Call it
sayHello("Norris");

// outputs:
// Hello, Norris
2
function abc() {
  alert('test');
}

var funcName = 'abc';

window[funcName]();
0

New to Communities?

Join the community