I'm learning JavaScript, and in looking at some code that's used to show/hide an unordered list item based on a condition, they have:
myArray[i].style.display = "show";
I understand
style.display = "block"
But I cannot find any documentation on "show". Is this an attribute specific to JavaScript? There's no CSS attribute of "show" that I can find anywhere. But it works.