「JavaScript」bindメソッドを利用するサンプル

書式
関数名.bind()
サンプルコード

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<script>
function funcA() {
console.log(this);
}
const res = funcA.bind(456);
res();
</script>
<script> function funcA() { console.log(this); } const res = funcA.bind(456); res(); </script>
<script>
  function funcA() {
    console.log(this);
  }

  const res = funcA.bind(456);
  res(); 
</script>

実行結果
Number {456}

JavaScript

Posted by arkgame