JSFiddle - React, Tailwind, and code Playground

by Michael Prosser

JavaScript

function calculateSum(a,b){

	let c = a+b;

}

function returnSum(a,b){

	return a+b;

}

console.log(calculateSum(2,2));
console.log(returnSum(2,2));