JSFiddle - React, Tailwind, and code Playground

by queryj

JavaScript

var n = test();

document.write("the returned values is " + n);

function test()
{
   var a = 9, b = 5;
     
     8 + 9;
   
   return    a + b;
}