Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8824443
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T06:38:11+00:00 2026-06-14T06:38:11+00:00

Rails 3.2.8. In converting some of my JS functions over to CoffeeScript, I have

  • 0

Rails 3.2.8. In converting some of my JS functions over to CoffeeScript, I have come across several questions that say declaring a function like so:

@foo = (bar) ->

puts foo in the global namespace. But it doesn’t, because my function calls elsewhere in the application, especially ones that are in .js.erb files.

Here’s what does work:

foo = (bar) ->

window.foo = foo

With that, all my calls in .js.erb files work fine.

What is the reason that the @foo = notation doesn’t work as I am expecting it to? That would be a lot easier than having to remember to add an extra line to expose the function to the global namespace.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T06:38:12+00:00Added an answer on June 14, 2026 at 6:38 am

    @foo translates to this.foo

    foo translates to var foo

    There is a big difference between the two of those.


    For example:

    bar = (baz) -> 
     @bar = 5
     lemon = @bar + baz
    
     @foo = (bar) ->
      lemon
     return @
    
    Bar = new bar(12)
    

    Translates to:

    var Bar, bar;
    
    bar = function(baz) {
      var lemon;
      this.bar = 5;
      lemon = this.bar + baz;
      this.foo = function(bar) {
        return lemon;
      };
      return this;
    };
    
    Bar = new bar(12);
    

    See fiddle demo of generated code: http://jsfiddle.net/maniator/rXWw2/

    Here is a link showing you the CoffeeScript and it’s generated code

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a PHP-driven website that I am converting to Rails. I currently have
Rails has a nice idiom that makes it easy for you to have a
I'm starting to use simple_form for a rails application, and while converting some of
I'm having some difficulties converting this old mailer api to rails 3: content_type multipart/mixed
I have a rails create action which send back some jquery in a file:
I have just been informed that a Rails 3 project I've been working on
I'm converting a Rails-2.3 project over to 3.0.3, and I'm running into a vexing
I am converting a Rails 2 application to Rails 3. I currently have a
In order to improve my understanding of Rails, I'm converting a Sinatra app that
I have some namespaced models which I'm trying to override the default rails table

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.