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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T22:06:27+00:00 2026-05-25T22:06:27+00:00

I want to be able to write: generate ‘Cat’, ‘meow’ and define the generate

  • 0

I want to be able to write:

generate 'Cat', 'meow'

and define the generate function in such a way that it produces:

class Cat
  meow: ->
    @.__proto__.constructor.name + ' says meow.'

so that I can write:

garfield = new Cat
garfield.meow() # "Cat says meow"
  • 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-05-25T22:06:28+00:00Added an answer on May 25, 2026 at 10:06 pm

    If you don’t mind polluting your global namespace, I actually got this snippet running in the ‘try coffeescript’ runner at the CoffeeScript site:

    root = exports ? window
    alert = alert or console.log
    
    gen = (clsname, val) ->
      root[clsname] = class
        meow: => "#{clsname} says #{val}"
    
    gen 'Cat', 'meow'
    g = new root.Cat
    alert g.meow()
    
    gen 'Dog', 'woff'
    d = new root.Dog
    alert d.meow()
    

    Not 100% what you asked for, but it’s almost what you wanted, isn’t it?

    Edit: Actually, the first script only worked in the browser, not the (Node.js-based) CLI, corrected the script.

    If you know you’ll only live in the browser, you can loose root.Cat and only say Cat, but if you want Node.js and browser compat, you’ll have to live with root.*

    Edit 2: It’s generally a better idea to return the class from the generating function rather than magically putting it in a namespace. It’s also possible to make the method names dynamic. With some inspiration from @Loren, the asker (notice how it doesn’t need to refer the global object anymore):

    alert = alert or console.log
    
    gen = (clsname, val) ->
      C = class
      C.prototype[val] = -> "#{clsname} says #{val}"
      C
    
    Cat = gen 'Cat', 'meow'
    console.log Cat
    g = new Cat
    alert g.meow()
    
    Dog = gen 'Dog', 'woff'
    d = new Dog
    alert d.woff()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Nunit, I want to be able to write a test fixture that will
How do I write a function that adds a method to a class? I
I want to write a javascript function that operates as follows: Input: Youtube Video
Currently, I have: outByte.writeInt(0x49492a00); outByte.writeInt(0x08000000); But i want to be able to write all
I want my program to be able to write files in a sequential format,
I want to write a little program which is able to work with Google
I want to be able to generate IIS's standard 404 response, not a custom
I am trying to write a view that will generate a report which displays
I want to write a c code to generate tone using array output to
I'm trying to write a regex function that will identify and replace a single

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.