@tung.nguyenthanh2903/reverse-sentence
v1.0.0
Published
Reverses the words of a sentence.
Downloads
4
Readme
reverse-sentence
Reverses the words of a sentence.
Install
npm install @npmusername/reverse-sentence
API
require("reverse-sentence") => Function
reverse(sentence) => String
Example
const reverseSentence = require("reverse-sentence");
const sentence = "Hello Beth!";
const reversed = reverseSentence(sentence);
console.log(reversed); // Beth! Hello
License
MIT