Я хочу, чтобы мой список отображался буквами (не цифрами).
Я пытался использовать type = "a", и он отображает все как.
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
</head>
<body>
<script>
salad = new Array();
salad[0]="feta";
salad[1]="tomatoes";
salad[2]="lettuce";
salad[3]="olives";
salad[4]="olive oil";
salad[5]="vinegar";
salad[6]="herbs";
salad[7]="seasoning";
for (i=0;i<salad.length;i=i+1) {
document.writeln("<ol type='A'><li>" + salad[i] + "</li></ol>");
}
</script>
</body>
</html>