Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <body ng-app="miApp" ng-controller="controladorTiempo">
 
    <p>{{fecha}}</p>
    <p>{{hora}}</p>
 
</body>

<!-- Más info https://www.guidacode.com/2018/angularjs/como-crear-servicio-en-angularjs/ -->
              
            
!

CSS

              
                
              
            
!

JS

              
                var module = angular.module('miApp', []);

/*Cuando la aplicaciones necesite por primera vez el servicio, entonces se llamara a la funcion factory*/
module.factory('saludoService', function () {

var saludoSvc = {};

  /*Al objeto le asignaremos 2 métodos, Obtener fecha y Obtener hora*/
  saludoSvc.getFecha = function () {
    var meses = ['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'];

    //Obtenemos la fecha de hoy
    var fecha = new Date();

    //El mes a partir del objeto fecha
    var mes = fecha.getMonth();

    //Devolvemos un string que devoverá el día, el mes (en castellano) y el año
    return 'Hoy es ' + fecha.getDate() + ' de ' + meses[mes] + ' del ' + fecha.getFullYear();
  }

  //Esta funcion devolverá la hora
  saludoSvc.getHora = function () {
    return new Date().toTimeString();
  }

  return  saludoSvc;

});

//Ahora en el controlador podremos llamar a nuestro servicio. 
module.controller("controladorTiempo", function ($scope, saludoService) {

  //Llamamos la funciones del servicio y asignamos los valores que devuelven  a la variable $scope para poder sacarlos en la vista
  $scope.fecha = saludoService.getFecha();
  $scope.hora = saludoService.getHora();

});
              
            
!
999px

Console