Can you build a function that turns a string into the phonetic version of it eg:
var phon = function(s){
... stuff
return output;
}
if n1239 went in
November 1 2 3 niner would come out as a string so that we can just do
dir+=phon(callsign)
after that we then can make it so that you type in your reg
Can you build a function that turns a string into the phonetic version of it eg:
var phon = function(s){
... stuff
return output;
}
if n1239 went in
November 1 2 3 niner would come out as a string so that we can just do
dir+=phon(callsign)
after that we then can make it so that you type in your reg