🌀 Mission 2 : Activate the Portal
Score: 20
PORTAL

Initialize the portal system

Hint: First detect the portal by typing scan portal


Practice Demo

Example: Change the portal glow effect.

document.querySelector(".portal").style.boxShadow="0 0 200px blue"



Concept Explanation

In JavaScript developers can change how elements look by modifying their style.

The example above changes the glow effect using style.boxShadow.

Developers can also change the actual color of the portal using the background property.

Hint: Try using document.querySelector(".portal").style.backgroundColor



Challenge

Mission: Change the portal color to GREEN