Skip to content

Instantly share code, notes, and snippets.

View eoamusan's full-sized avatar

Oluwatobi Amusan eoamusan

  • Tinkaiti Inc
View GitHub Profile
@eoamusan
eoamusan / prettify.js
Last active November 13, 2022 10:29
javascript - prettity
function doStuff(text) {
// Convert the text to lower characters
const lowerCased = text.toLocaleLowerCase();
// Split the characters with the space delimeter
const words = lowerCased.split(' ');
// Reverse split array
words.reverse();