单项选择题
let sayString="hello hunger! How are you?"; const reg=/hello|you/g; console.log(sayString.match(reg));以上代码运行结果正确的是()
A.["hello"]
B.["you"]
C.["hello","you"]
D.null
点击查看答案
相关考题
单项选择题
