Returning Multiple Values from a Function
JavaScript functions can return a single value only, but there is a work around to return more than two or just return two values from a function JavaScript. For returning multiple values from a function in JS, you need to wrap the return values as elements of an array or return the values as the … Read more