Q. Which of the following is used to create a new Promise?
Code:let p = new Promise((resolve, reject) => {});
β
Correct Answer: (A)
Correct syntax
Explanation: This is the correct way to create a new Promise.