如何使用JavaScript设置strftime?

6 浏览
0 Comments

如何使用JavaScript设置strftime?

我需要自定义日期格式。在Ruby中,我会使用strftime或字符串格式化时间来实现这一点。

now = Time.new
now.strftime '%a, %d of %b' #=> "Sat, 27 of Jun"

JavaScript是否使用strftime或类似的东西?我该如何在JavaScript中实现类似的效果?

0