Challenge: Check Parentheses

This challenge will test your skills of writing efficient code using functions in JavaScript.

Problem statement

Let’s say your teammate is working on a JavaScript code that won’t run because the brackets (square, curly, round) are not properly nested. You then decide to write a Parentheses Checker function, which efficiently checks whether or not the ...