Skip to content

Instantly share code, notes, and snippets.

View boombang's full-sized avatar

Artem Kazaryan boombang

View GitHub Profile
//array.js
export function each(collection, callback) {
//something interesting
}
export function filter(collection, callback) {
//something interesting
each(collection, ...)
//something interesting
//my-module.js
let privateVar = "Ben Cherry";
export const publicVar = "Hey there!";
const privateFunction = () => {
console.log( "Name:" + privateVar );
}
export const publicSetName = (strName) => {
privateVar = strName;
//my-module.js
define([], function() {
var privateVar = "Ben Cherry";
var publicVar = "Hey there!";
function privateFunction() {
console.log( "Name:" + privateVar );
}
function publicSetName( strName ) {
//my-module.js
var privateVar = "Ben Cherry";
var publicVar = "Hey there!";
function privateFunction() {
console.log( "Name:" + privateVar );
}
function publicSetName( strName ) {
privateVar = strName;
var myRevealingModule = (function () {
var privateVar = "Ben Cherry";
var publicVar = "Hey there!";
function privateFunction() {
console.log( "Name:" + privateVar );
}
function publicSetName( strName ) {
privateVar = strName;