js | new Error()时间:2024-04-11 17:29:06 new error() const x = Error('I was created using a function call!'); console.log(x); const y = new Error('I was constructed via the "new" keyword!'); console.log(y);