Last active
January 3, 2016 10:39
-
-
Save cocodrips/8450814 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
#これでほかのページからhoge = new Hoge() | |
#hoge.a()ってやると、bがありませんって言われるのなんでーーー。 | |
#hoge.b(date)は呼べるよー( ・ั﹏・ั) | |
class @Hoge | |
a: ()=> | |
now = new Date() | |
b(now) | |
b: (date)=> | |
console.log date | |
#これだとよべるけど、 | |
#こんどはhoge.b()が呼べないよー | |
class @Hoge | |
a: ()=> | |
now = new Date() | |
b(now) | |
b= (date)-> | |
console.log date |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment