Reverse string easily
npm install @satyamthakur30/reverse-stringReverses the words of a sentence.
``sh
npm install @satyamthakur30/reverse-sentence
`
`js
require("reverse-sentence") => Function
reverse(sentence) => String
`
`js
const reverseSentence = require("reverse-sentence");
const sentence = "satyam kumar thakur";
const reversed = reverseSentence(sentence);
console.log(reversed) // thakur kumar satyam"
``
MI