const word = 'Cakes';
const firstChar = /^C/;
const lastChar = /s$/;
const lastTwoChars = /es$/;
console.log(word.match(firstChar))
console.log(word.match(lastChar))
console.log(word.match(lastTwoChars))
Saya menggunakan script diatas pada Javascript Intermediate > Regex > Assertions namun dianggap salah ketika diperiksa.
Works fine ketika di tes di Regex Tester.
Mohon konfirmasi dan klarifikasinya terakit hal ini.