Skip to content

Instantly share code, notes, and snippets.

View ValentinaRod's full-sized avatar

Valentina Rodriguez ValentinaRod

View GitHub Profile
@ValentinaRod
ValentinaRod / arrayLocalStorage.js
Created August 9, 2017 15:26 — forked from nrojas13/arrayLocalStorage.js
Cómo guardar un array en localStorage
// 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');
@ValentinaRod
ValentinaRod / ValentinaRodriguez_SCL20171517_Recuperativa_Ejercicio1.html
Last active June 27, 2017 04:22 — forked from iamblancaperez/index.html
ValentinaRodriguez_SCL20171517_Recuperativa_Ejercicio1.js
<!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í -->