This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Guardar el array en el localStorage | |
// El arreglo: | |
var array = [1, 2, 3]; | |
// Se guarda en localStorage despues de JSON stringificarlo | |
localStorage.setItem('myArray', JSON.stringify(array)); | |
// Obtener el arreglo de localStorage | |
var array = localStorage.getItem('myArray'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Applove</title> | |
<!-- Importa la fuente del proyecto (Raleway) de Google Fonts (https://fonts.google.com) --> | |
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"> | |
<!-- Enlaza tu CSS reutilizable aquí (common.css) --> | |
<link rel="stylesheet" href="css/common.css"> | |
<!-- Enlaza tu CSS del proyecto aquí --> |