complexity: 2 ; importance: 5; author: docentmail


"if" statement

Problem 2016-03-24-23-47

Question: Develop an snippet to use "if" statement to alert "You are to young" in case the variable "age" is less or equal 17.

var age=15; // 22

// put you if here
alert("You are to young");