Skip to content

Instantly share code, notes, and snippets.

@Bambina-zz
Created July 20, 2015 11:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bambina-zz/7637b4337c2482ae46c1 to your computer and use it in GitHub Desktop.
Save Bambina-zz/7637b4337c2482ae46c1 to your computer and use it in GitHub Desktop.
js use call method
var pi = { //変数piにオブジェクトを代入する。jsのオブジェクトはプロパティの集合である。
name: "pipipi"
}
var hi = function(name){ //オブジェクトを受け取って、そのオブジェクトのnameプロパティを表示する無名関数を変数を
console.log( "name is"+ this.name );
}
hi.call(pi); //本来piオブジェクトが持っていないhiメソッドを適用する。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment