Listified Tokens, or Somebody’s JavaScript Homework

A pal requested me how I would resolve following drawback: Given a string within the type “(1, 2, 3), (4, 5, 6), (7, 8, 9)”, convert it to a multidimensional array of the shape [[1, 2, 3], [4, 5, 6], [7, 8, 9]]. For my first move, I did some enjoyable shenanigans with Array.prototype.scale back() […]