Reverse String

node v8.17.0
version: 1.0.0
endpointsharetweet
const sentence = 'Bhinneka Tunggal Ika'; const strLength = sentence.length; let newStr = ''; for(let i = strLength - 1; i >= 0; i--) { newStr += sentence[i]; } console.log(newStr);
Loading…

no comments

    sign in to comment