Explode

function explode(sep, str) { return str.split(sep); }

Splits a string(str) into an array separated by sep.

Digg This