ramesh thapa
ramesh thapa

Reputation: 1

atom editor. in alert ("hello") there is an error [validatequotemarks]

I use atom editor. In alert ("hello") there is an error:

[validatequotemarks] invalid quote mark found.

In JavaScript also same error is also reported.

It works in notepad but not in atom editor?

<html>
<head>
<meta charset="UTF-8">
</head>
<body>    
<script type="text/javascript">
 alert("hello");
 document.write("my name is");
</script>
</body>

Upvotes: 0

Views: 384

Answers (1)

Jason Aller
Jason Aller

Reputation: 3654

Try changing to single quotes:

alert('hello');

and see if the error goes away. Both double quotes and single quotes are valid in JavaScript, but some linting tools allow one to be specified, and it could be that your settings in Atom are set to require single quotes.

Upvotes: 1

Related Questions