JSFiddle - React, Tailwind, and code Playground
by karthick6891
HTML
<!-- string space -->
JavaScript
var str = "Give space";
String.prototype.space = function() {
return this.split("").join(" ");
}
String.prototype.reverse = function() {
return this.split("").reverse().join("");
}
alert(str.space());
alert(str.reverse());