
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
JavaScript Array of Functions
The Array.of() method of JavaScript is used to create a new array instance with variables as parameter values.
The syntax is as follows −
Array.of(elements....)
Above, elements are the values as parameter values.
Let us now implement the Array.of() method in JavaScript −
Example
<!DOCTYPE html> <html> <body> <h2>Demo Heading</h2> <p>Click the button to display the values in Console</p> <button onclick="display()">Result</button> <p id="test"></p> <script> function display() { console.log(Array.of(10, 20, 30, 40 ,50)); } </script> </body> </html>
Output
Click the “Result” and check the Console for the output −
Example
<!DOCTYPE html> <html> <body> <h2>Demo Heading</h2> <p>Get the student names with top 5 ranks...</p> <button onclick="display()">Result</button> <p id="test"></p> <script> function display() { console.log(Array.of("Kevin", "Tom", "Ryan", "Jacob", "Jack")); } </script> </body> </html>
Output
Click the “Result” button and check the result in the Console −
Advertisements