|
need help translating
i know nothing about java script, but i need to translate this so another program can understand it.
here's the code:
function jal(str){var zwq = '';for(var i=0;i < str.length;i++){zwq += ''+str.charCodeAt(i).toString(16);}return zwq;}
where the str = "http://atdhenet.tv/"
there's another var that is assigned like this
var kol = jal("http://atdhenet.tv/")
so i just need to know what var kol will end up being :/
thanks for all your help
|