Answers for "how to make elements in an array represent each other"

0

javascript get elements that exist in two arrays

function getArraysIntersection(a1,a2){
    return  a1.filter(function(n) { return a2.indexOf(n) !== -1;});
}
var colors1 = ["red","blue","green"];
var colors2 = ["red","yellow","blue"];
var intersectingColors=getArraysIntersection(colors1, colors2); //["red", "blue"]
Posted by: Guest on August-01-2019
0

how to put two items befside each other using flexbox

<div class="flex-column">
  <div class="column-item">a</div>
  <div class="column-item">b</div>
  <div class="column-item">c</div>
  <div class="column-item">d</div>
  <div class="column-item">e</div>
</div>
Posted by: Guest on December-16-2019

Code answers related to "how to make elements in an array represent each other"

Code answers related to "Javascript"

Browse Popular Code Answers by Language