Comment on convertit un float en string ?
merci beaucoup
Version imprimable
Comment on convertit un float en string ?
merci beaucoup
Salut ;) :
ouCode:var str = flt + "";
ou encoreCode:var str = new String(flt);
?? (JS est typé dynamiquement non ?)Code:var str = flt.toString();
Code:.toString()
merci à tous pour vos réponses,
ma conversion marche très bien !
thanks