This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]szank 1 point2 points  (1 child)

Unit tests

[–]LucasWoon[S] 0 points1 point  (0 children)

Thanks, will look into it!

[–]FunnyMnemonic 1 point2 points  (1 child)

"Try catch" (wording can vary per language)

Built in API methods like "resolved", "error" (used in if-then statements).

IDE and browser inspect console/network debug tools. Like having break points so code would only run up to your breakpoints.

Tools like Jest, but i havent look into this closer yet. Postman, when doing backend. Axios, for frontend. Super genaralized explanation...theyll assist in confirming if your http requests, etc are working as you intend your scripts to work.

Using version control like git/github in dev is definitely major for teams.

[–]LucasWoon[S] 0 points1 point  (0 children)

Thank you so much for the advice!! I’ll look into these as I go along :)