Tagged Questions
1
vote
5answers
1k views
Where is my one-line implementation of rot13 in JavaScript going wrong?
Code in question with syntax highlighting here: via Friendpaste
rot13.js:
<script>
String.prototype.rot13 = rot13 = function(s)
{
return (s = (s) ? s : this).split('').map(function(_)
...