¿Cómo convertir la fecha y hora UTC en la fecha y hora local usando JavaScript?

Dada una fecha UTC y la tarea es convertir la fecha y hora UTC en fecha y hora local usando la función JavaScript toLocaleString() .

Sintaxis:

var theDate = new Date(Date.parse('06/14/2020 4:41:48 PM UTC'))
theDate.toLocaleString()

Código JavaScript: 

javascript

// Function to convert UTC date-time
// to Local date-time
function myFunction() {
    var theDate = new Date(Date.parse(
            '06/14/2020 4:41:48 PM UTC'));
 
    document.write("Local date Time: ",
            theDate.toLocaleString());
}

Ejemplo: este ejemplo convierte la fecha y hora UTC en la fecha y hora local usando JavaScript. 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
        How to convert UTC date time
        into local date time?
    </title>
 
    <style>
        h1 {
            color: green;
        }
 
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
    <h1>GeekforGeeks</h1>
 
    <p>
        Click the button to convert
        UTC date and time to local
        date and time
    </p>
 
    <p>
        UTC date and time:
        06/14/2020 4:41:48 PM
    </p>
 
    <button onclick="myGeeks()">
        Try it
    </button>
 
    <p id="demo"></p>
 
    <script>
        function myGeeks() {
            var theDate = new Date(Date.parse(
                '06/14/2020 4:41:48 PM UTC'));
 
            document.getElementById("demo")
                .innerHTML = "Local date Time: "
                + theDate.toLocaleString();
        }
    </script>
</body>
 
</html>

Producción:

  • Antes de hacer clic en el botón:
  • Después de hacer clic en el botón:

Publicación traducida automáticamente

Artículo escrito por romy421kumari 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 *