Posts by Bruno Sales • 77 points
3 posts
-
2
votes3
answers389
viewsA: How to get the date of the first and last days of the current week with Javascript?
var dataAtual = new Date(); // obtem data atual var primeiro = dataAtual.getDate() - dataAtual.getDay(); // Obtem primeiro dia da semana atual var ultimo = primeiro + 6; // Primeiro dia da…
-
4
votes3
answers259
viewsA: Which means an "!" exclamation before a string inside an if in C#
then, string.Isnullorempty indicates if a string is null or empty, that is, if this variable Connect._message which is being passed as parameter null or empty, will return a Boolean true, otherwise…
-
0
votes2
answers471
viewsA: Redirect before logging into the system - Angular
I did it once, I did it this way using redirectTo and pathMatch - import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { EventosComponent } from…
angularanswered Bruno Sales 77