RKRahul Kumar Borah·Aug 5, 202002What is the significance of `new` keyword in javascript?What is the difference between the following two statements? Statement 1: throw Error("some error message"); Statement 2: throw new Error("some error message");L_Luiz and 1 more commented