throw typeerror javascript 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
throw new Error('Whoops!')
throw new Error("Error message here"); // Uncaught Error: Error message here