Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
// counter.js let count = 0; // Private — not accessible outside function increment() { count++; } function decrement() { count--; } function getCount() { return count; } // Only export the public interface export { increment, decrement, getCount }; // Importers cannot access `count` directly — encapsulation!
Result
Open