Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Math max with array js

var nums = [1, 2, 3]
Math.min.apply(Math, nums)    // 1
Math.max.apply(Math, nums)    // 3
Math.min.apply(null, nums)    // 1
Math.max.apply(null, nums)    // 3
Source by medium.com #
 
PREVIOUS NEXT
Tagged: #Math #max #array #js
ADD COMMENT
Topic
Name
6+9 =