判断一串数字是有效的时间戳

通过换算的时间是否是1970年来判断是否是有效的时间戳。
new Date(time).toString() !== new Date(1).toString()

代码演示

输入时间戳,判断时间戳是否有效。