Q:

call method in javascript


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"
 
1

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

var person = {

  firstName:"John",

  lastName: "Doe",

    fullName: function () {

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

    }

}

	person.fullName();   // Will return "John Doe"
 
2
<button onclick="sayHello()">say hello</button>  <script>    'use strict';  //force the context to be undefined    function sayHello() {      console.log(this);      console.log(arguments);      console.log('hello');    }  </script>
-1

New to Communities?

Join the community