for example: today is 08/03/2018; ``` # in a IOS weex-platform: new Date().toLocaleDateString() > 2018/8/3 ``` ``` # but in a android weex-platform: new Date().toLocaleDateString() > 2018/8/2 ``` ``` # in a h5-platform, no matter in a IOS or Android platform: new Date().toLocaleDateString() > 2018/8/3 ```
for example: today is 08/03/2018;