Skip to content

Instantly share code, notes, and snippets.

View AndriBG's full-sized avatar

Andri Bonilla AndriBG

View GitHub Profile
var arr = ['Sacha', 'Og', 'Haru'];
arr[Symbol.iterator] = function *() {
var i = this.length - 1;
while (i >= 0) {
yield this[i];
i--;
}
}
for (var value of arr) {
@jonmircha
jonmircha / para_comenzar.html
Last active October 21, 2024 00:08
Código para iniciar el Curso de CSS Grid de @jonmircha
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aprendiendo Grid CSS</title>
<style>
html {
box-sizing: border-box;
var arr = ['Sacha', 'Og', 'Haru'];
arr[Symbol.iterator] = function *() {
var i = this.length - 1;
while (i >= 0) {
yield this[i];
i--;
}
}
for (var value of arr) {