MCPcopy Create free account
hub / github.com/ActiveState/code / StrReverse

Function StrReverse

recipes/JavaScript/578464_Reversing_string/recipe-578464.js:2–8  ·  view source on GitHub ↗
(str)

Source from the content-addressed store, hash-verified

1//with cycle (not recommended)
2function StrReverse(str) {
3 var res = '';
4 for (var i = str.length - 1; i >= 0; --i)
5 res += str.charAt(i);
6
7 return(res);
8}
9
10alert(StrReverse(".gnirts a si sihT"));
11

Callers 1

recipe-578464.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected