You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
|
|
list = ["uno", "dos", "tres",
|
|
"cuatro", "cinco", "seis"];
|
|
//- Without a block, the element is accepted and no code is generated
|
|
-
|
|
each item in list
|
|
-
|
|
string = item.charAt(0)
|
|
|
|
.toUpperCase() +
|
|
item.slice(1);
|
|
li= string
|