Humans are adaptable. They can structure a sentence in many ways, and it will still make sense. In contrast, computers require precise instructions. If you break the rules a bit, a command may make sense to a human, but a computer won’t be able to interpret it.

Syntax in Human Language

Imagine someone says to you, “I saw a woman over there with a telescope.” There are several ways to interpret this sentence:

Using a telescope, I observed a woman who was over there.I observed a woman, who was over there, and she had a telescope.I observed a woman and a telescope, they were both over there.I was over there, and I observed a woman who had a telescope.Sometimes, I go over there and saw a woman using a telescope.

Because you’re human, you can apply context to this sentence. You wouldn’t consider the last interpretation because you know we don’t use telescopes for sawing people as if they were slices of bread. Based on where over there is, and possibly any previous discussion about telescopes, you would probably correctly assume the first or second interpretation.

What is a Syntax Error in a Computer Language?

How syntax errors are handled in different languages can vary. For example:

Excel: If you type a formula with an incorrect syntax into a cell in Excel, #VALUE displays in the cell. It won’t be explicitly labeled as a syntax error, but that’s what it is. HTML: You can break a lot of rules in HTML, and a web page will display fine in most browsers. The problem with this is the behavior can become unpredictable. A page may look fine on one browser, but not work on another. It’s a good idea to check your code with the W3C validation service, which provides detailed information about errors in the HTML code. JavaScript: If there’s a syntax error in JavaScript, it prevents the thread with the error from running. However, the rest of the code, contained in other threads, will execute, provided the code isn’t dependent on the thread with the error. When running the code in a browser, typically, nothing happens. You won’t get an error message, nor will the code run.

What to Do If You Have a Syntax Error

Debug your code if you encounter a syntax error.