Problema 1.
<!DOCTYPE html>
<html>
<head>
    <title>Ejemplo de JavaScript</title>
    <meta charset="UTF-8">
</head>
<body>
    <script>
        function retornarFecha() {
            const fecha = new Date();
            return `${fecha.getDate()}\\${fecha.getMonth()+1}\\${fecha.getFullYear()}`;
        }
        document.write(`Fecha:${retornarFecha()}`)
    </script>
</body>
</html>