Question:Consider the three variables: someText = 'JavaScript1.2'; pattern = /(\w+)(\d)\.(\d)/i; outCome = pattern.exec(someText); What does outCome[0] contain?
A true B false C JavaScript1.2 D null
+ AnswerC
+ Report