delfin123 / 5-startit-movie-finder-delfin123

0 stars 0 forks source link

Code conventions in variable/method names #4

Open alexanderpavlovets opened 6 years ago

alexanderpavlovets commented 6 years ago

Please use common code conventions for variable/methods/class/ect. names.

It is much more easier for other people (your colleagues/contributors maybe) to understand your code, for example: Instead of

expect(await Intersec(ganresoffilm,ganresofsimilarfilm)).not.to.be.empty

Try to use CamelCase

expect(await Intersec(ganresOfFilm,ganresOfSimilarFilm)).not.to.be.empty

For information: https://www.w3schools.com/js/js_conventions.asp

delfin123 commented 6 years ago

понял, исправил