Solve common problems in your JavaScript code
Os links a seguir apontam soluções para problemas comuns do dia a dia, você precisará consertar em ordem para que seu código javascript execute corretamente.
Erros comuns de iniciantes
Digitação correta and casing
Se o seu código não funciona e/ou se seu navegador indicar que algo está indefinido, verifique se você declarou todas os nomes de suas variáveis, nomes de funções, etc. corretamente.
Algumas funções comuns dos navegadores que causam problema são:
Correto | Incorreto |
---|---|
getElementsByTagName() |
getElementbyTagName() |
getElementsByName() |
getElementByName() |
getElementsByClassName() |
getElementByClassName() |
getElementById() |
getElementsById() |
Posições de ponto e vírgula
Você precisa ter certeza que você não colocou nenhum ponto e vírgula incorretamente. Por exemplo:
Correct | Wrong |
---|---|
elem.style.color = 'red'; |
elem.style.color = 'red;' |
Funções
Há uma série de coisas que podem dar errado com funções
Um dos erros mais comuns é declarar a função, mas não chama-la em lugar nenhum. Por exemplo:
function myFunction() {
alert("This is my function.");
}
Este código não fará nada a menos que você o chame, por exemplo com
myFunction();
Escopo da função
Lembre-se que funções tem seu próprio escopo — você não pode acessar um conjunto de valores de variáveis dentro de uma função fora da função, a não ser que você tenha declarado a variável globalmente (i.e. não dentro de nenhuma função), ou retorne o valor or retorne o valor fora da função
Executar o código antes de uma declaração de retorno
Remember also that when you return a value out of a function, the JavaScript interpreter exits the function — no code declared after the return statement will run.
In fact, some browsers (like Firefox) will give you an error message in the developer console if you have code after a return statement. Firefox gives you "unreachable code after return statement".
Object notation versus normal assignment
When you assign something normally in JavaScript, you use a single equals sign, e.g.:
var myNumber = 0;
This doesn't work in Objects, however — with objects you need to separate member names from their values using colons, and separate each member with a comma, for example:
var myObject = {
name: "Chris",
age: 38,
};
Definições básicas
Casos de uso básicos
Geral
Variáveis
Matemática
- Quais tipos de números você tem que lidar no desenvolvimento web?
- Como você faz matemática básica em JavaScript?
- Qual a precedência do operador, e como isso é tratado em JavaScript?
- Como você incrementa e decrementa valores em JavaScript?
- Como você compara valores em JavaScript? (por exemplo, para ver qual é o maior, ou para ver se um valor é igual ao outro).
Strings
- Como você cria uma string em JavaScript?
- Do you have to use single quotes or double quotes?
- How do you escape characters in strings?
- How do you join strings together?
- Can you join strings and numbers together?
- How do you find the length of a string?
- How you find what character is at a certain position in a string?
- How do you find and extract a specific substring from a string?
- How do you change the case of a string?
- How do you replace one specific substring with another?
Arrays
Debugging JavaScript
- What are the basic types of error?
- What are browser developer tools, and how do you access them?
- How do you log a value to the JavaScript console?
- How do you use breakpoints, and other JavaScript debugging features?
For more information on JavaScript debugging, see Handling common JavaScript problems; also see Other common errors for a description of common errors.
Making decisions in code
- How do you execute different blocks of code, depending on a variable's value or other condition?
- How do you use if ...else statements?
- How do nest one decision block inside another?
- How do you use AND, OR, and NOT operators in JavaScript?
- How do you conveniently handle a large number of choices for one condition?
- How do you use a ternary operator to make a quick choice between two options based on a true or false test?
Looping/iteration
- How do you run the same bit of code over and over again?
- How do you exit a loop before the end if a certain condition is met?
- How do you skip to the next iteration of a loop if a certain condition is met?
- How do you use while and do ... while loops?
- How to iterate over the elements in an array
- How to iterate over the elements in a multidimensional array
- How to iterate over the members in an object
- How to iterate over the members of an object nested inside an array
Intermediate use cases
Functions
- How do you find functions in the browser?
- What is the difference between a function and a method?
- How do you create your own functions?
- How do you run (call, or invoke) a function?
- What is an anonymous function?
- How do you specify parameters (or arguments) when invoking a function?
- What is function scope?
- What are return values, and how do you use them?
Objects
- How do you create an object?
- What is dot notation?
- What is bracket notation?
- How do you get and set the methods and properties of an object?
- What is
this
, in the context of an object? - What is object-oriented programming?
- What are constructors and instances, and how do you create them?
- What different ways are there to create objects in JavaScript?
JSON
Eventos
- What are event handlers and how do you use them?
- What are inline event handlers?
- What does the
addEventListener()
function do, and how do you use it? - Which mechanism should I use to add event code to my web pages?
- What are event objects, and how do you use them?
- How do you prevent default event behaviour?
- How do events fire on nested elements? (event propagation, also related — event bubbling and capturing)
- What is event delegation, and how does it work?