What are the arguments and parameters in the code snipped?  …

What are the arguments and parameters in the code snipped?       var shirt = “blue”; var pants = “gray”; var clothes = wearIt(shirt, pants); function wearIt( x, y) { var myOutfit = “Today I will wear a ” + pants + 8                            ” shirt and ” + shirt + ” pants.”; return myOutfit; } document.write(clothes);

What would the following code snippet display?            …

What would the following code snippet display?                var x = 5;                if(x == 4)                document.write(“Math is fun!”);                          else                          document.write(“Wrong! “);                          document.write(“Math is not fun!”);