JSFiddle - React, Tailwind, and code Playground

by Michael Prosser

JavaScript

function Multiplier(m){

	this.calc = function(a){
  
  	return a*m;
  
  }
  
}

var s1 = new Multiplier(10);
var s2 = new Multiplier(15);

console.log(s1.calc(3));
console.log(s2.calc(5));