complexity: 2 ; importance: 5; author: docentmail
"if" statement
Problem 2016-03-24-23-45
Question: Develop an snippet to use "if" statement to alert "The size fits" in case the variable "size" value is greater than 5 but less than 7.
var size=5; // 6, 8
// put you if here
alert("The size fits");