--- id: 5d7925342415527083bd6667 title: Part 30 challengeType: 0 dashedName: part-30 --- # --description-- The `split` method returns an array of strings from a larger string by using its argument to determine where to make each split: ```js "a b c".split(" "); // ["a", "b", "c"]; ``` Add a function `toNumberList` (inside `applyFn`) which takes an argument `args` and splits it by commas. Return `toNumberList`. # --hints-- See description above for instructions. ```js assert(JSON.stringify(applyFn('')('foo,baz,bar')) === '["foo","baz","bar"]'); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```