Contact: aviboots(AT)netvision.net.il
39,995 questions
51,940 answers
573 users
for (let i = 0; i < 16; i++) { const result = i.toString(2); console.log(result); } /* run: "0" "1" "10" "11" "100" "101" "110" "111" "1000" "1001" "1010" "1011" "1100" "1101" "1110" "1111" */