Javascript String toArray()

Description

Javascript String toArray()


String.prototype.toArray = function() {
  return this.split("");
};



PreviousNext

Related