1 2 3 4 5 6 7 8 9
let value = 0; export function setValue(newValue) { value = newValue; } export function getValue() { return value; }