A developer is writing an EpicScript function to validate user IDs. The user ID must start with 'E' and end with '90'. Given the code snippet below, what will be the final value of the 'isValid' variable?
let userId = "E-SYS-ADMIN-90";
let pattern = "E*90";
let isValid = userId ~= pattern;
-
A
"E-SYS-ADMIN-90"
-
B
false
-
C
true
-
D
nil