Answers for "java code to calculate age from date of birth"

7

undo local commit

$ git reset --soft HEAD~1
Posted by: Guest on April-09-2020
5

git delete local commit

git reset --hard origin/<branch_name>
Posted by: Guest on June-19-2020
10

java age from date

LocalDate today = LocalDate.now();
LocalDate birthday = LocalDate.of(1987, 09, 24);

Period period = Period.between(birthday, today);

//Now access the values as below
System.out.println(period.getDays());
System.out.println(period.getMonths());
System.out.println(period.getYears());
Posted by: Guest on July-23-2020

Code answers related to "java code to calculate age from date of birth"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language