Say for example I want to split string "12:30-14:40" and have the result in a matrix like: [["12","30"],["14","40"]].
I can do this in JavaScript with:
"12:30-14:40".split("-").map(function(x) { ...
Sign in to post comments.
Comments (0)
Sign in to post comments.