**Variables:**
c#: `type name;`
JS: ` var name : type;`
**Functions:**
c#: `void func(blah){`
JS: ` function func(blah){`
Apart from that mostly the languages are the same, particularly when calling into Unity APIs. Spend some time reading about the two languages and you'll be able to convert between them.
↧