Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
JavaScript

Return Statement in JavaScript

Send values out of functions with return.

Return Statement in JavaScript — a practical guide to JavaScript return with clear examples you can reuse in real projects.

JavaScript Tutorial Series (42/101). Prefer one article? Read the complete JavaScript tutorial.

Short description

Functions without return yield undefined.

Return

function area(w, h) {
  return w * h;
}

Leave a reply

Your email address will not be published. Required fields are marked *