
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set.clear() function in JavaScript
The clear() function of the Set object removes all elements from the current Set object.
Syntax
Its Syntax is as follows
setObj.clear()
Example
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> const setObj = new Set(); setObj.add('Java'); setObj.add('JavaFX'); setObj.add('JavaScript'); setObj.add('HBase'); setObj.clear(); document.write("Contents of the Set:"); for (let item of setObj) { document.write(item); document.write("<br>"); } </script> </body> </html>
Output
Contents of the Set:
Advertisements