function RevStr(str) {
return str.split('').reverse().join('');
}
RevStr('DritalConnect') //tcennoClatirD
function RevStr(str) {
if(!str || str.length < 2 ||
typeof str!== 'string') {
return 'Invalid string input !!';
}
const revArr = [];
const length = str.length - 1;
for(let i = length; i >= 0; i--) {
revArr.push(str[i]);
}
return revArr.join('');
}
RevStr('DritalConnect') //tcennoClatirD
If you want to sell your readymade software to the genuine clients or businessman, list your software with details and demo links.
Clients will find it using our advanced search filter and will contact you directly.
No any charge for the product lsiting.