JSFiddle - React, Tailwind, and code Playground

by squarefoo

JavaScript

function calc(first, second) {
    console.log(this);
    return first + second;
}

calcPlusOne = calc.bind(window, 1);

console.log(calcPlusOne(5));
console.log(calcPlusOne.call({}, 5, 5));