write a java program to find the common elements between two arrays of integers code example
Example 1: c++ program for addition of two numbers using functions
#include <iostream>
using namespace std;
int addition(int a,int b);
int main()
{
int a,b;
int add;
cout<<"Enter first number: ";
cin>>a;
cout<<"Enter second number: ";
cin>>b;
add=addition(a,b);
cout<<"Addition is: "<<add<<endl;
return 0;
}
int addition(int a,int b)
{
return (a+b);
}
Example 2: javascript get intersection of 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);