Implement a function hasUpperCaseLetters that checks if there are any upperCase letters in a string.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

helper.js

export const hasUpperCaseLetters = (s) => {
  return false;
}

solution.js

/**
 * Implement a function hasUpperCaseLetters in helper.js that checks if there are any upperCase letters in the string
 * */

import { hasUpperCaseLetters } from './helper.js';

const s = 'Bingo!';

console.log(hasUpperCaseLetters(s));