Skip to content

Instantly share code, notes, and snippets.

View manuelxaguilar's full-sized avatar

Manuel Aguilar manuelxaguilar

View GitHub Profile
@manuelxaguilar
manuelxaguilar / observable_es6.html
Last active December 5, 2016 17:05
Creating an observable ES2015 class to better understand how reactive programming works.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input id="input" />
<script src="observable.js"></script>
</body>