어떻게 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
사용할 수있는 호출 및 적용 방법이 있습니까?.
undefined
또는null
:) 경우max
맥락에서 접근 / 변경 아무것도 시도가 실패했을 컨텍스트로 설정undefined
또는null
.