Open In App

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

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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



Last Updated : 28 Jun, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads