.map function
var numbers = [4, 9, 16, 25];
var x = numbers.map(Math.sqrt)
document.getElementById("demo").innerHTML = x; const array1 = [1, 4, 9, 16];
// pass a function to map
const map1 = array1.map(x => x * 2);
console.log(map1);
// expected output: Array [2, 8, 18, 32]const array1 = [1, 4, 9, 16];
// pass a function to map
const map1 = array1.map(x => x * 2);
console.log(map1);
// expected output: Array [2, 8, 18, 32]
const array1 = [1, 4, 9, 16];
var map1 = array1.map(x => x * 2);
var map2 = array1.map( function( x, i ) {
console.log(x, i);
// x = 1 , 4 , 9 ,16 i = 0 , 1 , 2 , 3
return x
} );
console.log(map1);
// expected output: Array [2, 8, 18, 32]
var yourArray= yourArray.map(Number);
Also in JavaScript:
- file origin does not match viewer's pdf.js
- javascript yield
- multiple conditions for JavaScript .includes() method
- js continue
- c# print object to json
- stream recording javascript
- get value in tag with id JS
- javascript create checkbox with label
- openssl error Subject does not start with '/'
- function in react
- connect nodejs to mariadb
- oscar toledo chess javascript
- react prevstate
- js remove if
- radium is not working
- next js create store
- javascript string replace
- preventive vs reactive
- how to scroll down to the bottom of a div using javascript
- set up background process in express app
- first element of array js
- jquery datatable draw false
- get input value on keypress jquery
- get random element from array js