chandnasujatha_shoppingexample
Version:
Demo for NodeJS
18 lines (14 loc) • 311 B
JavaScript
function addFunc(first,second)
{
return first+second;
}
function subFunc(first,second)
{
return first-second;
}
function mulFunc(first,second)
{
return first*second;
}
console.log("The added value is "+addFunc(123,446));
console.log("The suntracted value is "+subFunc(623,446));