Friday, November 14, 2025
HomeLanguagesJavascriptUnderscore.js | _.clone() Function

Underscore.js | _.clone() Function

The _.clone() function is used to create a shallow copy of the given object. The nested objects or arrays will be copied using reference, not duplicated.

Syntax:

_.clone( object )

Parameters: This function accept a single parameter as mentioned above and described below:

  • object: It contains the value of object that need to be copied.

Return Value: It returns the shallow-copy of the given object.

Below example illustrate the _.clone() function in Underscore.js:
Example 1:




<!DOCTYPE html>
<html>
  
<head>
    <script type="text/javascript" src=
    </script>
</head>
  
<body>
    <script type="text/javascript">
  
        var info = {
            Company: 'neveropen',
            Address: 'Noida',
            Contact: '+91 9876543210'
        };
  
        console.log(_.clone(info));
    </script>
</body>
  
</html>


Output:

Example 2:




<!DOCTYPE html>
<html>
  
<head>
    <script type="text/javascript" src=
    </script>
</head>
  
<body>
    <script type="text/javascript">
  
        var clon = _.clone({
            Name: 'Ashok',
            Age: 32,
            Email: 'ashok@gfg.com'
        });
  
        console.log(clon);
    </script>
</body>
  
</html>


Output:

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7142 POSTS0 COMMENTS
Thapelo Manthata
6837 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS