Posts by Ismar Santos • 20 points
3 posts
-
1
votes1
answer52
viewsA: Place buttons side by side CSS
In class buttons which is the class of div where have the <a></a> put a display:flex; .button { width: 10%; height: 50px; border: 0; cursor: pointer; background:#4169E1; border-radius:…
-
-2
votes6
answers5628
viewsA: Calculate age in years using javascript
function idade (timestamp){ const hoje = new Date() //estou pegando a data do dia const diaDoNiver = new Date(timestamp) // aqui se refere ao dia do aniversário // a linha…
-
-2
votes6
answers5628
viewsA: Calculate age in years using javascript
function nasc (timestamp){ const today = new Date() const nascDate = new Date(timestamp) let nasc = today.getFullYear() - nascDate.getFullYear() const month =…