Weekly JavaScript Quiz Questions & Answers – May 1

May 1 Weekly JavaScript Quiz Questions & Answers Here are our last 7 JavaScript quiz questions and their answers. Answers marked green are the correct ones... How can you calculate the square root of 16? 1. Math.sqrRoot(16); 2. Math.square(16); 3. Math.root(16); 4. Math.sqrt(16); Which statement skips over the current iteration of a loop? 1.