--- title: Balanced brackets id: 594dc6c729e5700999302b45 challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof isBalanced === "function", "isBalanced is a function.");' - text: '' testString: 'assert(isBalanced(testCases[0]), "isBalanced("[]") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[1]), "isBalanced("]][[[][][][]][") should return false.");' - text: '' testString: 'assert(isBalanced(testCases[2]), "isBalanced("[][[[[][][[[]]]]]]") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[3]), "isBalanced("][") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[4]), "isBalanced("[[[]]]][[]") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[5]), "isBalanced("][[]") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[6]), "isBalanced("][[][]][[[]]") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[7]), "isBalanced("[[][]]][") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[8]), "isBalanced("[[[]]][[]]]][][[") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[9]), "isBalanced("[]][[]]][[[[][]]") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[10]), "isBalanced("][]][[][") should return true.");' - text: '' testString: 'assert(isBalanced(testCases[11]), "isBalanced("[[]][[][]]") should return true.");' - text: '' testString: 'assert(isBalanced(testCases[12]), "isBalanced("[[]]") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[13]), "isBalanced("]][]][[]][[[") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[14]), "isBalanced("][]][][[") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[15]), "isBalanced("][][") should return true.");' - text: '' testString: 'assert(!isBalanced(testCases[16]), "isBalanced("[[]]][][][[]][") should return true.");' - text: '' testString: 'assert(isBalanced(testCases[17]), "isBalanced("") should return true.");' ```
## Challenge Seed
```js function isBalanced (str) { // Good luck! return true; } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```