PO
Size: a a a
PO
PO
VS
PO
VS
I
I
A
A
S
S
S
D
star.forEach((item) => {
item.addEventListener("click", (e) => {
console.log(e.currentTarget);
});
});
VF
D
star.forEach((item, index) => {
item.addEventListener("click", (e) => {
console.log(index + 1);
});
});
S
star.forEach((item, index) => {
item.addEventListener("click", (e) => {
console.log(index + 1);
});
});
S
D
I
S