JavaScript Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumJavaScript
Given ESM live bindings, what does main.js log?
code
// counter.js
export let n = 1;
export function inc() { n++; }
// main.js
import { n, inc } from './counter.js';
console.log(n);
inc();
console.log(n);