Inbound marketing is a strategy that utilizes various
tools to develop content that will attract consumers to your product or
brand, rather than using strategies that invade their awareness.
// write your code here function swapRedGreen(pixel) { var newGreen = pixel.getRed(); var newRed = pixel.getGreen(); pixel.setGreen(newGreen); pixel.setRed(newRed); return pixel; } var image = new SimpleImage ("eastereggs.jpg"); print (image); for ( var pixel of image.values()){ if (swapRedGreen(pixel) ){ } } print (image);
Comments
Post a Comment