So I need to figure out how to store "p" tags into an array, and then use the ternary operator to determine if the "p" tag is even or odd.
- Is my Array correct for storing the "p" tags?
- How can I use the ternary operator to loop through and automatically set even/odd (I have to use different color backgrounds for evens and odds for read-ability)
this is what I have so far. I know how to manually code the evens/odds in. But I can't seem to find any help the ternary operator to loop through my code and check to see what "p" tags are even or odd.
function paragraph()
{
list = new Array();
var list = document.getElementsByTagName("p");
var even = list[0];
var odd = list[1];
even.style.backgroundColor = "#CCFFFF";
odd.style.backgroundColor = "#CCFFCC";
} //end of paragraph()
I seem to really struggle with arrays and loops. So any help would be greatly appreciated. Thanks in advance.
The ternary operator is just a convenience so that one may avoid having to write code like this:
It doesn't solve the problem at hand; it just saves you from typing multiple lines of code by providing the syntax of a one-liner.
If you were to take advantage of cascading style sheets, that which would simplify the javascript, if you were to use it to change the classname of each 'p' tag as follows :
See http://jsfiddle.net/ngmgv263/3/
The workhorse operator here is the modulus or modulo as it's sometimes called. If the result of that operation is non-zero then the background style will be of class 'odd' otherwise the class changes to 'even.' The advantage is that anytime you may wish to change the pair of colors, you don't need to modify the javascript -- only the background values for the even and odd 'p' tag classes. Also, you wouldn't need to modify the JavaScript in case you wanted to have alternating font colors; you would just specify them in the even and odd classes for 'p' tags as I do in the example code.
In this case the ternary operator works with the results which will only be either zero or one, which aids in rendering the alternating colors. If we wanted to have three alternating background styles, then the math would be 'i % 3'in which case instead of using a ternary operator you'd need either to to use a switch statement or an 'if (condition) else if (condition) else ...' control structure since there would be three possible results, zero, one and two and the ternary deals with only two at a time, although you could use a nested ternary but that would likely overly complicate the code and make it less legible.