Contact: aviboots(AT)netvision.net.il
39,895 questions
51,826 answers
573 users
// true && false = false // true && 1 = 1 // true && "abc" = "abc" // true && "abc" && 12 = 12 // true && "abc" && 0 = 0 // false && true = false // true && "abc" && false = false