App.js contains this code:
function add(num1,num2){
let sum = num1+ num2;
}
let sum = add(2,2);
When I run "time node app.js" In the command line I get the response:
real 0m0.312s
user 0m0.000s
sys 0m0.015s
What does this mean? What is the time flag measuring? How is the runtime calculated? Can you point me to documentation on this flag?