Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 317 Bytes

File metadata and controls

8 lines (6 loc) · 317 Bytes

Screen Shot 2022-07-18 at 01 43 18

String.prototype.toJadenCase = function () {
  return this.split(" ").map((word) => word[0].toUpperCase() + word.slice(1)).join(" ");
};