Skip to content

Instantly share code, notes, and snippets.

View kodetop's full-sized avatar

Kodetop kodetop

View GitHub Profile
@kodetop
kodetop / areas.js
Last active March 29, 2020 03:04
ES6: module export
// file: areas.js
let squareArea = (width) => {
return width * width;
};
let circleArea = (radio) => {
return 2 * Math.PI * radio;
};
// export methods