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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:11:50+00:00 2026-05-31T05:11:50+00:00

Please can someone explain to me what this line of code does: var list

  • 0

Please can someone explain to me what this line of code does:

var list  = calls[ev] || (calls[ev] = {});

My best guess:

It’s setting the variable “list” with the value of calls.xxx, where xxx is a variable, ev. If calls[ev] doesn’t exist, then it’s creating it as an empty object and assigning that empty object to “list”. Is that right?

Why are the parenthesis being used? Where can I find out more info on using || when setting variables, and the use of parenthesis in this context? Thanks!

  • 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-31T05:11:51+00:00Added an answer on May 31, 2026 at 5:11 am

    This code is equivalent to

    var list;
    if (calls[ev])
      list = calls[ev];
    else {
      calls[ev] = {};
      list = calls[ev];
    }
    

    Two features of the language are used:

    1. The shortcut computation of boolean expressions (consider a || b. If a is true then b is not evaluated). Thus, if you assign var v = a || b; and a evaluates to something that can be cast to true, then b is not evaluated.
    2. The assignment statement evaluates to the last assigned value (to enable var a = b = c;)

    The parentheses are necessary to avoid this interpretation:

    var list = (calls[ev] || calls[ev]) = {};
    

    (which is an error).

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

Sidebar

Related Questions

EDIT (Side Question) Can someone please explain what this line does? eval website=\${$#} The
Can someone please explain what does the following line of code exactly do? If
Can someone please explain the structure of this line of a script for me?
Can someone please explain why I'm getting this error? My code: def x(n): if
Can someone please explain to me the below code. This behavior has been like
Can someone please explain why this program outputs 0x00000004? class AndAssignment { static void
I have a feeling this XML is not valid, can someone please explain why?
Could someone please help explain why I can't get this to work? I properly
Can someone please explain what the & does in the following: class TEST {
I'm converting some C code to Delphi. Can someone please explain to me what

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.