Last active
August 21, 2017 06:02
-
-
Save chinghanho/c760a16e8243a25367c928a5a5fe3a85 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// CommonJS 給你兩個工具: | |
// | |
// 1. require 函式 | |
// 2. module 物件 | |
// | |
// 可以用 module.exports 把物件模組化,用 reuqire 把物件載入。 | |
function Animation() { | |
// | |
} | |
Animation.prototype.move = function () {} | |
module.exports = Animation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Animation = require('./animation') | |
var anime = new Animation() | |
anime.move() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment