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 8663901
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T17:06:25+00:00 2026-06-12T17:06:25+00:00

i have done something like this: myProject = settings: duration: 500 value: ‘aValue’ aFunction:

  • 0

i have done something like this:

myProject =

  settings:
    duration: 500
    value: 'aValue'

  aFunction: ->
    myElement.fadeOut myProject.settings.duration

This is just a sample but my project is like that. A lot of times i have to reference to the settings to get a certain value, and i always have to write myProject.settings.value, and it doesn´t look good.

My question is, can I call a function that returns the wanted value? Something like this:

aFunction: ->
  myElement.fadeOut getSetting(duration)

I tried with

getSetting: (param) ->
  myProject.settings.param

but failed? Why is that?
Thank you!

  • 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-12T17:06:28+00:00Added an answer on June 12, 2026 at 5:06 pm

    To access an object property by a variable, you can do:

    object[key]
    

    In coffeescript, the last line should be the return value, in your example:
    Please note the @ (= this).

    myProject =
    
      settings:
        duration: 500
        value: 'aValue'
    
      fadeOut: ($element) ->
        $element.fadeOut @getSetting('duration')
    
      getSetting: (key) ->
        @settings[key]
    
    myProject.fadeOut($myElement)
    

    The javascript :

    var myProject;
    
    myProject = {
      settings: {
        duration: 500,
        value: 'aValue'
      },
      fadeOut: function($element) {
        return $element.fadeOut(this.getSetting('duration'));
      },
      getSetting: function(key) {
        return this.settings[key];
      }
    };
    
    myProject.fadeOut($myElement);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have done something like this: <form action=validate.php method=get> Id :<input type=text name=pID/><br/><br/> Name
I am trying to create something like this as i have done it in
Usually when I write a PHP class I have done something like this: class
I have done something like this a long time ago where I captured the
In a previous life, I might have done something like this: <a href=# onclick=f(311);return
I've done enough Googling to know that if I have something like class SubObject
for (;;) { //Something to be done repeatedly } I have seen this sort
I have an existing table structure that looks something like this: AnimalTable ------------- |Id
I think I might have done something right, headByRating and headByName both refer to
I must have done something wrong. I have a C# project in Visual Studio

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.