JSFiddle - React, Tailwind, and code Playground

by Prathameshsb

JavaScript

const arr = [1,2,200,3,4];
const arr2 = ['r', 't', 'o'];

console.log(Math.max(...arr));

function f() {
	console.log(this.name);
}

f = f.bind({name: 'John'}).bind({name: 'ann'})

f();