I am trying using Email RegEx in javascript section in MVC4. But RegEx has @ char. It is not allowing to parse it
error:
Parser Error Message: "[" is not valid at the start of a code block.  
        Only identifiers, keywords, comments, "(" and "{" are valid.
code
@section scripts{
    <script type="text/javascript">
        $(document).ready(function() {
            $('#btnSave, #btnCoAuthor').click(function() {
                if (form.valid()) {
                    var hasError = false;
                    var emailReg = '[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+\.[a-zA-Z]{2,4}';
                      //Error showing @
 
     
     
    