Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 246 Bytes

Date.md

File metadata and controls

18 lines (15 loc) · 246 Bytes

Date

Date

const a = Date.now();
const date = new Date();
const b = date.getTime();
const c = date.setDate(12);
$a = \Ts2Php_Date::now();
$date = new \Ts2Php_Date();
$b = $date->getTime();
$c = $date->setDate(12);