Skip to content

Instantly share code, notes, and snippets.

@thereisnoneed0
Created March 2, 2024 06:55
Show Gist options
  • Save thereisnoneed0/1687c7b6d9b997d7b180a1c59224aca1 to your computer and use it in GitHub Desktop.
Save thereisnoneed0/1687c7b6d9b997d7b180a1c59224aca1 to your computer and use it in GitHub Desktop.
const ar =['holyjs', 'highload']
function getIntersec(params) {
const A = new Set(params[0])
const B = new Set(params[1])
return A.intersection(B)
}
console.log(getIntersec(ar)) // {'h', 'o', 'l'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment