0
Make all letters in the hex uppercase?
Is there a way to change all letters in the randomly generated hex to uppercase? https://code.sololearn.com/Wzq0B1J6w95q/?ref=app
2 Respuestas
+ 5
Since the hex is a string, use toUpperCase().
In line 8, do num.toUpperCase()
+ 1
Jonathan Pizarra Thanks!