Saturday, October 25, 2025
HomeLanguagesJavascriptD3.js | d3.set.clear() Function

D3.js | d3.set.clear() Function

The set.clear() function in D3.js is used to remove all values from the set. It clears the set and holds that blank set you can check that in the 2nd example.

Syntax:

d3.set().clear();

Parameters: This function does not accept any parameters.

Return Value: This function does not returns any values.

Below programs illustrate the d3.set.clear() function in D3.js:

Example 1:




<!DOCTYPE html>
<html>
  
<head>
    <title> d3.set.clear() Function</title>
  
    <script src='https://d3js.org/d3.v4.min.js'></script>
</head>
  
<body>
    <script>
  
        // Initialising the set
        var set = d3.set(["1", "2", "a", "b", "Geeks"]);
  
        // Checking the set
        console.log(set);
        // Calling the set.clear() function
        set.clear();
  
        // Checking whether any element is present
        // in the set or not
        A = set.has("a");
        B = set.has("Geeks");
  
        // Getting the output of true or false
        console.log(A);
        console.log(B);
    </script>
</body>
  
</html>


Output:

{"$1":"1","$2":"2","$a":"a","$b":"b","$Geeks":"Geeks"}
  false
  false

Example 2:




<!DOCTYPE html>
<html>
  
<head>
    <title> d3.set.clear() Function</title>
  
    <script src='https://d3js.org/d3.v4.min.js'></script>
</head>
  
<body>
  <script>
      
     // Initialising the set
     var set = d3.set(["1", "2", "a", "b", "Geeks"]);
       
     // Checking whether any element is present
     // in the set or not before calling set.clear() function
     A = set.has("a");
     B = set.has("Geeks");
       
     // Getting the output of true or false
     console.log(A);
     console.log(B);
      
     // Calling the set.clear() function
     set.clear();
      
     // Checking whether any element is present
     // in the set or not after calling set.clear() function
     C = set.has("a");
     D = set.has("Geeks");
       
     // Getting the output of true or false
     console.log(C);
     console.log(D);
      
  </script>
</body>
  
</html>


Output:

true
true
false
false

Ref: https://devdocs.io/d3~5/d3-collection#set_clear

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!
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS