Contact: aviboots(AT)netvision.net.il
40,761 questions
53,136 answers
573 users
const [a, b, c, d]: [number, string, number, number] = [42, "ts", 3.14, 783524]; console.log(a, b, c, d); /* run: 42, "ts", 3.14, 783524 */