New: Try Voli The Bear, Fast package manager (and not only) for Windows
JavaScript
// This is broken: it accepts junk. Run it, look at the second line, and fix isPostcode.
function isPostcode(str) {
  return /\d{5}/.test(str);
}

console.log('12345        ->', isPostcode('12345'));
console.log('abc12345xyz  ->', isPostcode('abc12345xyz'));
console.log('123456       ->', isPostcode('123456'));