colon in js

JavaScript
List: 
while(counter < 50)
{
     userInput += userInput;
     counter++;
     if(userInput > 10000)
     {
          break List;
     }
}
switch (new Date().getDay()) {
    case 6:
        text = "Today is Saturday";
        break; 
    case 0:
        text = "Today is Sunday";
        break; 
    default: 
        text = "Looking forward to the Weekend";
}
var Car = {model:"2015", color:"blue"}; //car object with model and color properties
document.getElementById("demo").innerHTML = age>18? "True" : "False";

Source

Also in JavaScript: