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