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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:37:20+00:00 2026-05-25T20:37:20+00:00

Example: [42] == [42] The result of the comparison gives different results: CS/JS: false

  • 0

Example:

[42] == [42]

The result of the comparison gives different results:

CS/JS: false
Ruby:  true

On the other hand:

42 == 42

gives the result:

CS/JS: true
Ruby:  true

What is the reasoning behind this?

  • 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-25T20:37:20+00:00Added an answer on May 25, 2026 at 8:37 pm

    The other answerers have done a good job of explaining the JavaScript/CoffeeScript equality semantics. (CoffeeScript’s == compiles to JavaScript’s stricter ===, but that makes no difference in this case.)

    The Ruby case is more complex: Everything in Ruby is an object, and so every object has a == method which, in principle, could do anything. In the case of arrays, it looks at the other array, checks if it has the same length, and then checks if x == y for each x in itself and y in the other array.

    If you want to emulate the Ruby behavior, it’s quite simple to write a function to do so:

    deepEquals = (arr1, arr2) ->
      return false unless arr1.length is arr2.length
      for i in [0...arr1.length]
        if arr1[i] instanceof Array and arr2[i] instanceof Array
          return false unless deepEquals(arr1[i], arr2[i])
        else
          return false if arr1[i] isnt arr2[i] 
      true
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For example result of this code snippet depends on which machine: the compiler machine
I have a outsource data from : http://example.com/data/news.json Here is the example result after
I have a directory of XML files... for example: result.xml result2.xml result3.xml resultNth.xml (because
Possible Duplicate: C programming division in the following code example the result should yield
can we dynamically appened where condition on a linq query? for example: class Result
Example: regular_string = %s %s % (foo, bar) result = {} result[somekey] = regular_string,
For example: - (BOOL)compare:(NSDecimal)leftOperand greaterThan:(NSDecimal)rightOperand { NSComparisonResult result = NSDecimalCompare(&leftOperand, &rightOperand); // rest not
I have posted an example below and the desired result . I saw a
The example code of section 10.6, the expected result is: after several iterations, the
Lets take qsort()'s comparison callback function as an example int (*compar)(const void *, const

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.