JSFiddle - React, Tailwind, and code Playground

by obobruyko

JavaScript

var max = Math.max.apply(null, [1,2,3]),
    max2 = Math.max.call(null, 1,2,6);

console.log(max);
console.log(max2);