How to perform 'Intersection' in JavaScript.
// Task: Intersection
// Language: JavaScript
function intersection() {
// Implementation for Intersection
const result = ...; // Initialize variable
// TODO: Implement core logic here
// Step 1: Prepare data
// Step 2: Process Intersection
console.log("Done");
}