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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:43:03+00:00 2026-05-25T02:43:03+00:00

given this javascript code: this.underlyingReference = {name: ‘joe’}; this.nullMe(this.underlyingReference); alert(this.underlyingReference.name); function nullMe(variable) { variable

  • 0

given this javascript code:

this.underlyingReference = {name: 'joe'};

this.nullMe(this.underlyingReference);

alert(this.underlyingReference.name);

function nullMe(variable) {
   variable = null;
}

Is there a way in Javascript for me to null this.underlyingReference using “variable”? I want to be able to null out variable and have the underlying reference be nulled and not simply null the reference to a reference.

I’ve read articles like this one http://snook.ca/archives/javascript/javascript_pass about Javascript’s pass by reference functionality but it appears as though when you want to destroy the underlying reference the behavior is not what I have come to expect from references.

when execution passes the second line of code I want “this.underlyingReference” to be nulled out. However the alert line shows that the underlying reference is still alive and kicking.

  • 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-25T02:43:04+00:00Added an answer on May 25, 2026 at 2:43 am

    You can try

    function nullMe(obj, reference){
        delete obj[reference];
    }
    
    nullMe(this, "underlyingReference");
    

    Or

    function nullMe(reference){
        delete this[reference];
    }
    nullMe.call(this, "underlyingReference");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given this PHP code: <a onclick=javascript:window.location.href='<?php echo $url;?>' What if there is a '
I pasted the code given in this link to a file called md5.js. http://www.webtoolkit.info/javascript-md5.html
The following code in javascript gives me the error this.callback is not a function
I want to have a javascript function such as this: function isUsernameAvailable(username) { //Code
I am currently facing an error in JavaScript. The code is given below function
Given this data set: ID Name City Birthyear 1 Egon Spengler New York 1957
Given this algorithm, I would like to know if there exists an iterative version.
I am using pseudo-code here, but this is in JavaScript. With the most efficient
I have some JavaScript code that dynamically injects an iframe in a given HTML
Given this last thread: Javascript/Jquery: Show a hidden div based on a Radio box

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.