Skip to content

Instantly share code, notes, and snippets.

@cocodrips
Last active January 3, 2016 10:39
Show Gist options
  • Save cocodrips/8450814 to your computer and use it in GitHub Desktop.
Save cocodrips/8450814 to your computer and use it in GitHub Desktop.
クラス内の関数が呼べない
#これでほかのページから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