You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Ejercicio: Usa el contructor new Date adecuadamente para crear un objeto de tipo Date que se inicialice con tu fecha de nacimiento https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/Date
*/
const fechaNacimiento = new Date(); // <--- SOLAMENTE DEBES MODIFICAR ESTA LÍNEA
// NO MODIFICAR A PARTIR DE AQUÍ
const fechaActual = new Date();
let edad = fechaActual.getFullYear() - fechaNacimiento.getFullYear();
const m = fechaActual.getMonth() - fechaNacimiento.getMonth();