You should always make sure that your code is mistakes free, but, you have to consider removing console.log statements, un-necessary white lines and last but not least. you should properly have a good indentation.
:pray: please fix indentation in every part of your project. consider this: in each scope, you should start your lines with the same number of spaces at the beginning of them.
Hi,
You should always make sure that your code is mistakes free, but, you have to consider removing
console.log
statements, un-necessary white lines and last but not least. you should properly have a good indentation.Logs: https://github.com/FACG5/Later-team/blob/aaf09e86bb9ef670f8be49789e2e8d704cffb617/puplic/js/index.js#L9
White spaces such like: https://github.com/FACG5/Later-team/blob/aaf09e86bb9ef670f8be49789e2e8d704cffb617/puplic/js/index.js#L19
Indentation: it's how many spaces are at the beginning of a statement. https://github.com/FACG5/Later-team/blob/aaf09e86bb9ef670f8be49789e2e8d704cffb617/puplic/js/index.js#L26
in here you have 4 spaces before the keyword
function
, but in the next example, at the same scope, you have only one space and at other parts of your code at the same scope you have 0 spaces. https://github.com/FACG5/Later-team/blob/aaf09e86bb9ef670f8be49789e2e8d704cffb617/puplic/js/index.js#L22:pray: please fix indentation in every part of your project. consider this: in each scope, you should start your lines with the same number of spaces at the beginning of them.