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;

//function declaration
int addition(int a,int b);

int main()
{
	int a,b;	//to store numbers
	int add;	//to store addition 
	
	//read numbers
	cout<<"Enter first number: ";
	cin>>a;
	cout<<"Enter second number: ";
	cin>>b;
	
	//call function
	add=addition(a,b);
	
	//print addition
	cout<<"Addition is: "<<add<<endl;
	
	return 0;
}

//function definition
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); //["red", "blue"]