let months = [1,2,3,4,5,6,7,8,9,10,11,12]
let month = 10
let ul = document.createElement('ul')
for(let i = 0; i<months.lenght; i++) {
let li = document.createElement("li")
li.innerHTML = i
ul.appendChild(li)
if(i+1 === 10) li.classList.app('cursive')
}
document.body.appendChild(ul)
const n =10;
for (let i = 0; i < 12; i++) {
//просто вывод
if(i === (n-1)){
//Вывод курсивом
}
}