JavaScript Fecha setUTCMinutes() Método – Part 1

A continuación se muestra el ejemplo del método Date setUTCMinutes() .

  • Ejemplo:

    javascript

    <script>
       // Here a date has been assigned according to
       // universal time while creating Date object
       var dateobj = 
       new Date('October 13, 1996 05:35:32 GMT-3:00');
      
       // New minute of 52 is being set in above Date
       // Object with the help of setUTCMinutes() method
       dateobj.setUTCMinutes(52);
      
       // New minute from above Date Object is
       // being extracted using getUTCMinutes()
       var B = dateobj.getUTCMinutes();
      
       // Printing new minute
       document.write(B);
    </script>
  • Producción:
    52

El método date.setUTCMinutes() se usa para establecer minutos de acuerdo con la hora universal en un objeto de fecha que se crea usando el constructor Date().

Sintaxis:

DateObj.setUTCMinutes(Minutes_Value);

Parámetro: este método acepta un solo parámetro como se mencionó anteriormente y se describe a continuación:

  • minutes_Value: este parámetro contiene el valor de minutos que queremos establecer en la fecha creada usando el constructor Date().

Valores devueltos: Devuelve el minuto nuevo, es decir, actualizado, que se establece mediante el método setUTCMinutes().

Nota: DateObj es un objeto Date válido creado con el constructor Date() en el que queremos establecer el minuto. El valor del minuto es de 0 a 59.

Más códigos para el método anterior son los siguientes:
Ejemplo 1: si en el constructor Date() no damos ningún minuto al crear el objeto Date, aún así el método setUTCMinutes() podrá establecer un nuevo minuto de acuerdo con la hora universal en el creado Objeto de fecha.

javascript

<script>
   // Here minute has not been assigned according to
   // universal time while creating Date object
   var dateobj = new Date('October 13, 1996 GMT-3:00');
  
   // New minute of 51 is being set in above Date
   // Object with the help of setUTCMinutes() method
   dateobj.setUTCMinutes(51);
  
   // New minute from above Date Object is
   // being extracted using getUTCMinutes()
   var B = dateobj.getUTCMinutes();
  
   // Printing new minute
   document.write(B);
</script>

Producción:

51

Ejemplo 2: si no se proporciona ningún parámetro en el constructor Date(), el método setUTCMinutes() aún podrá establecer los minutos, pero el mes, el año, la fecha, etc. seguirán siendo los actuales.
Aquí 42 son los nuevos minutos, 3 es el mes actual, es decir, abril, 1 es la fecha actual y 2018 es el año actual.

javascript

<script>
   // Here nothing has been assigned according to
   // universal time while creating Date object
   var dateobj = new Date();
  
   // New minute of 42 is being set in above Date
   // Object with the help of setUTCMinutes() method
   dateobj.setUTCMinutes(42);
  
   // Minutes from above Date Object is
   // being extracted using getUTCMinutes()
   var B = dateobj.getUTCMinutes();
  
   // Month from above Date Object is
   // being extracted using getUTCMonth()
   var C = dateobj.getUTCMonth();
  
   // Date from above Date Object is
   // being extracted using getUTCDate()
   var D = dateobj.getUTCDate();
  
   // Year from above Date Object is
   // being extracted using getUTCFullYear()
   var E = dateobj.getUTCFullYear();
   
   // Printing new minutes
   document.write(B + "<br />");
  
   // Printing current month
   document.write(C + "<br />");
  
   // Printing current date
   document.write(D + "<br />");
  
   // Printing current year
   document.write(E);
</script>

Producción:

42
3
1
2018

Ejemplo 3: si el valor del minuto es 66 como parámetro del método setUTCMinutes(), establecerá 6 como el minuto porque el rango de minutos es de 0 a 59 y, por lo tanto 66-60=6, aquí se resta 60 porque 0 a 59 es 60.

javascript

<script>
   // Here date has been assigned according to
   // universal time while creating Date object
   var dateobj = 
   new Date('October 13, 1996 05:35:32 GMT-3:00');
  
   // New minute of 66 is being set in above Date
   // Object with the help of setUTCMinutes() method
   dateobj.setUTCMinutes(66);
  
   // Minute from above Date Object is
   // being extracted using getUTCMinutes()
   var B = dateobj.getUTCMinutes();
  
   // Hour from above Date Object is
   // being extracted using getUTCHours()
   var C = dateobj.getUTCHours();
  
   // Printing new minute
   document.write(B + "<br />");
  
   // Printing hour
   document.write(C);
</script>

Producción:

6
6

Navegadores compatibles: los navegadores compatibles con el método JavaScript Date setUTCMinutes() se enumeran a continuación:

  • Google Chrome 1 y superior
  • Borde 12 y superior
  • Firefox 1 y superior
  • Internet Explorer 4 y superior
  • Ópera 4 y superior
  • Safari 1 y superior

Publicación traducida automáticamente

Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *