Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. stampaData(n: number) {
  2.       const newData = new Date();
  3.       alert('Hai scelto di aggiungere ' + n + ' giorni alla data ' + newData.toLocaleString().slice( 0 , 9 ).replace( ' , ' , ' '));
  4.  
  5.       console.log(newData.toLocaleString().slice( 0 , 9 ));
  6.  
  7.       for (let i = 0 ; i < n ; i++) {
  8.         newData.setDate(newData.getDate() + 1);
  9.         console.log(newData.toLocaleString().slice( 0 , 9 ).replace( ' , ' , ' '));
  10.       }
  11.       alert('Il risultato รจ ' + (newData.toLocaleString().slice( 0 , 9 ).replace( ' , ' , ' ')));
  12.  
  13.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement