Below code will help you to get full year in next JS.
function year() {
const date = new Date();
const year = date.getFullYear();
return (
<>
<div>Current year is {year}</div>
</>
)
}
export default year;
Below code will help you to get full year in next JS.
function year() {
const date = new Date();
const year = date.getFullYear();
return (
<>
<div>Current year is {year}</div>
</>
)
}
export default year;
For further actions, you may consider blocking this person and/or reporting abuse
Prince -
Heru Hartanto -
Gladiators Battle -
Nico Prat -
Top comments (0)