JSFiddle - React, Tailwind, and code Playground

by Artur Maizelev

JavaScript

let multiple = function(x, y) {
    console.log("x", x);
    console.log("y", y);
    console.log(x * y);
  };

  let multipleByTwo = multiple(2);
  multipleByTwo(5);