I'm new to coffeescript and had a question about accessing functions.
Given the code below how would I access the checkType function from within the constructor's for loop?
class ApplicationForm.Save
constructor: (@formItems) ->
@that = this
for item in @formItems
do ->
checkType(item)
checkType: (forItem) ->
console.log(@formItem.find("input").length)
@that = this? (transpiles tothis.that = this)