Language Basics JavaScript DHTML



A Simple Page

var w = 1, x = 2, y = 3, z = 4, ans; 
ans = (w > x) ? y : z
alert(ans);