javascript run function

Solutions on MaxInterview for javascript run function by the best coders in the world

showing results for - "javascript run function"
Simon
21 Jun 2020
1var Object = {
2  Name:"John",
3  LastName: "Doe",
4  CallName: function() {
5    return this.Name + " " + this.LastName;
6  }
7}
8
9Object.CallName();   // Will return "John Doe"