- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Accessing an array returned by a function in JavaScript
Following is the code for accessing an array returned by a function in JavaScript −
Example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-size: 20px; font-weight: 500; color: blueviolet; } </style> </head> <body> <h1>Accessing an array returned by a function in JavaScript</h1> <div class="result"></div> <br /> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to return an array from retTable() function and access it</h3> <script> let resEle = document.querySelector(".result"); let BtnEle = document.querySelector(".Btn"); function retTable(num) { let tempNum = []; for (i = 1; i <= 10; i++) { tempNum.push(i * num); } return tempNum; } BtnEle.addEventListener("click", () => { let tableArr = retTable(5); resEle.innerHTML = "tableArr = " + tableArr; }); </script> </body> </html>
Output
On clicking the ‘CLICK HERE’ button −
- Related Articles
- Accessing variables in a constructor function using a prototype method with JavaScript?
- Accessing and returning nested array value - JavaScript?
- What is the use of ()(parenthesis) brackets in accessing a function in JavaScript?
- Sorting an array of objects by an array JavaScript
- Sorting an array by date in JavaScript
- Sorting an array by price in JavaScript
- Accessing Array Elements in Perl
- How can we pass an empty string as a parameter to BIT_LENGTH() function and what would be returned by MySQL?
- Accessing a parent Element using JavaScript
- Construct an array by executing a function over each coordinate in Numpy
- Remove duplicate items from an array with a custom function in JavaScript
- Sort by index of an array in JavaScript
- Using a recursive function to capitalize each word in an array in JavaScript
- Rearrange an array in maximum minimum form by JavaScript
- Array findIndex() function in JavaScript

Advertisements