how to raise an object exception in js code example
Example 1: js throw error
throw new Error('Whoops!')
Example 2: javascript throw new error
throw new Error("Error message here"); // Uncaught Error: Error message here
Example 3: how to raise exception in js
throw new Error('Exception message');