Implement a JavaScript function called findCommon Elements that accepts multiple arrays as arguments and returns a new array containing only the elements that are present in every input array.
```
// Function signature
function findCommonElements(...arrays) {
// write your code here
}
// Example input and output:
// Input: findCommonElements([1, 2, 3, 4], [2, 4, 6, 8], [2, 4, 101)
// Expected Output: [2, 4]
```