Specify the possible existance of an element with ? Checks for zero or one of the preceding element Think of it as saying the previous element is optional
let american = "color";
let british = "colour";
let bothRegex = /colou?r/;
bothRegex.test(american); // returns true
bothRegex.test(british); // returns true