JavaScript Interview Program
Question: Given a string exp, Write a program to check whether the parentheses, curly braces, and square brackets
Test Case 1:
//input
const exp = "{()}[]"
//output
Balanced
Test Case 2:
//input
const exp = "{(]}[("
//output
Not Balanced
The proble...
mageshkannan.hashnode.dev4 min read