const a = 5; let b = 1; if (a < 5) { b = 10; } else if (a < 10) { b = 20; } else { b = 30; } export let c = b;