Related questions
Javascript String.fromCharCode Case Sensitivity?
I am simply listening for a keyup event of an input element and gather the results into a string like so
word=word+String.fromCharCode(key.keyCode);
The problem is that the word is in capital letters while I want …
array join function not working
for some reason Im not able to see why my array join method wont work. here's the quick code for review:
function rot13(str) { // LBH QVQ VG!
var strAry = str.split('');
var transformed = strAry.map(function(val){
if(val === " ") …