JSFiddle - React, Tailwind, and code Playground

by HemalathaThanigaivel

JavaScript

(function () {
console.log("hi");
return ;
})() ;

function sum( first_num, second_num )
{
var sumStr= 600;
function add(first_num , second_num)
{
return (sumStr + (first_num + second_num));
}
return add(first_num , second_num);
}
console.log("Result is :"+ sum(150,350));