Coding Challenge
Construct a function intersection that compares input arrays and returns a new array with elements found in all of the inputs.
kaldisberzins
Small bit of advice, seems like you use var and let interchangeably. I recommend using only let for variables that will change and const for variables that will not.
@kaldiberzins, thank you so much for your comment. I will avoid using var.