Skip to content

Instantly share code, notes, and snippets.

@triacontane
Created January 14, 2017 05:11
Show Gist options
  • Save triacontane/4074c17b3c17ce7e8eb00dafb75a9006 to your computer and use it in GitHub Desktop.
Save triacontane/4074c17b3c17ce7e8eb00dafb75a9006 to your computer and use it in GitHub Desktop.
ES2015のclass構文はシンタックスシュガーなので、ES5の通常の記述で再定義可能です。
class Test {
static aaa() {
alert('aaa');
}
}
var _Test_aaa = Test.aaa;
Test.aaa = function() {
_Test_aaa.apply(this, arguments);
alert('bbb');
};
Test.aaa(); // 'aaa' 'bbb'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment