string length evaluator

takes a string and outputs the length property

JavaScript

var input = "1";

if(input.length >= 0 )
{

  alert("fizz");
}