Question:What is the output of following JavaScript code?
<script type="text/javascript"> var cst = "Web Presence Solutions & Implementation"; var pattern = new RegExp("Implementation","i"); document.write(cst.match(pattern)); </script>
A null
B Implementation
C none
D error
+ AnswerB
+ Report