Javascript – how to get charcode from all the chars from a string?
when i try to log idCalc it only returns the keycode from the first character from the input My Code function log(){ var input = document.getElementById("inputBox"); var inputValue = input.value; var idCalc = inputValue.toUpperCase().char; console.log('idCalc') } should return the keycode…