Posts by Paulo Damasceno • 1 point
3 posts
-
-2
votes0
answers17
viewsQ: Doubt about Git Flow
I’m a beginner in Git Flow, when using normal git, the procedure I used to create a new Git Flow was like this: Create a new branch from a specific branch Performed the commit Ran the push origin…
-
-3
votes2
answers71
viewsQ: Doubt switch structure Javascript
In this example. switch(numero { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': console.log('Case 9'); break; The instruction is falling in case…
javascriptasked Paulo Damasceno 1 -
1
votes1
answer75
viewsQ: How to know the route before redirecting at Angular 4
I have the following code snippet that redirects to a 404 page if the path is not set within the application. { path: '**', redirectTo: 'paginas/pagina404' } But I would like to show on page 404 the…