匹配字符串开头的模式
let rickyAndCal = "Cal is first and can be found.";
let calRegex = /^Cal/;// Change this line
calRegex.test(rickyAndCal);
let rickyAndCal = "Cal is first and can be found.";
let calRegex = /^Cal/;// Change this line
calRegex.test(rickyAndCal);