About 23,400,000 results
Open links in new tab
  1. How to use setTimeout() in Coffeescript - Stack Overflow

    Mar 24, 2015 · How to use setTimeout () in Coffeescript Asked 11 years, 8 months ago Modified 10 years, 4 months ago Viewed 22k times

  2. coffeescript - Calling coffescript super methods - Stack Overflow

    May 7, 2025 · I have the following code: class Animal constructor: (@name) -> say: () -> console.log "Hello from animal called #{ @name }" class Dog extends Animal say: ...

  3. Can I use CoffeeScript instead of JS for node.js?

    Jan 13, 2011 · What are my restrictions if I want to code node.js and use CoffeeScript? Can I do anything I'd be able to do in JS?

  4. coffeescript - How do I initialize instance variables without having to ...

    Sep 19, 2012 · It's very important to understand prototypes when using coffeescript classes. I think the best way to init instance members is in the constructor like you are doing atm.

  5. Coffeescript for loop - Stack Overflow

    Dec 20, 2012 · I am trying to convert some apple chart examples from javascript to coffeescript. Having a tough time trying to figure out how to write this for loop in coffee script. Thanks for any …

  6. javascript - if else in coffee script - Stack Overflow

    Apr 6, 2015 · javascript jquery coffeescript edited Apr 6, 2015 at 11:22 asked Apr 6, 2015 at 11:03 Rahul Bhargava

  7. multiple OR in IF statement in Coffeescript - Stack Overflow

    May 7, 2014 · multiple OR in IF statement in Coffeescript Asked 10 years, 9 months ago Modified 10 years, 9 months ago Viewed 8k times

  8. coffeescript - Easiest way to check if string is null or empty - Stack ...

    I've got this code that checks for the empty or null string. It's working in testing. eitherStringEmpty= (email, password) -> emailEmpty = not email? or email is '' passwordEmpty = not pas...

  9. Coffeescript: how do I convert a string to a number?

    May 23, 2012 · I am building a JSON object that is sent in a POST request. This object has properties that need to be converted from string type to integer type before sending. How does …

  10. How to iterate over the keys and values in an object in CoffeeScript?

    Jun 20, 2011 · Precisely. CoffeeScript's of compiles to JavaScript's in. It's a common point of confusion, but having in for use with arrays is incredibly useful. I talk about this at length in the …