Online Javascript Compiler
Enter your Javascript code
RUN
/* * sample code */ let resultString = ""; function add(x, y) { resultString = "Hello, SeeB4coding! The result of your math is: "; var result = x + y; resultString += result; console.log(resultString); } add(3, 2);
Console Output