どのように機能しMath.max.apply()
ますか?
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<script>
var list = ["12","23","100","34","56",
"9","233"];
console.log(Math.max.apply(Math,list));
</script>
</body>
</html>
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/max
上記のコードは、リスト内の最大数を検索します。以下のコードはどのように機能するのか誰か教えてもらえますか?合格すればうまくいくようですnull or Math.
console.log(Math.max.apply(Math,list));
すべてに、user-defined/Native functions
使用できるcall and applyメソッドがありますか?
undefined
かnull
:)場合はmax
、コンテキスト内のアクセス/変更は何もしようとしたコンテキストに設定されている場合、それが失敗しただろうundefined
かnull
。