Lee wrote:
TomislaW said:
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.29...
TomislaW wrote on 24 mrt 2005 in comp.lang.javascript:
i have number that i need to concatenate with string
result = 7 + " dwarfs of Snowwhite."
this does not work with firefox(mozilla)
Sure it does. Show us exactly what "does not work".
num="Zero,One,Two,Three,Four,Five,Six,Seven".split (",")
function fplural(word){return word.substring(0,word.length-1)+"ves"}
result=num[7]+" "+ fplural("dwarf")+" of Snow White";
document.write(result);
Mick