Skip to content

Instantly share code, notes, and snippets.

View eugenefilimonov's full-sized avatar

Eugene Filimonov eugenefilimonov

View GitHub Profile
@eugenefilimonov
eugenefilimonov / .DS_Store
Last active December 22, 2015 09:58 — forked from ksolo/carousel.js
Image Carousel
@eugenefilimonov
eugenefilimonov / .DS_Store
Last active December 22, 2015 09:49 — forked from ksolo/form-validator.js
Form Validation
@eugenefilimonov
eugenefilimonov / zoo.js
Last active December 22, 2015 09:19 — forked from dbc-challenges/zoo.js
//------------------------------------------------------------------------------------------------------------------
// YOUR CODE: Create your Zoo "object literal" and Animal "constructor" and "prototypes" here.
//------------------------------------------------------------------------------------------------------------------
var Zoo = {
init: function (){},
bipeds: function (){
var array = []
for ( var i = 0; i<animals.length; i++) {
if (animals[i].legs === 2) {
array.push(animals[i])
@eugenefilimonov
eugenefilimonov / .DS_Store
Last active December 22, 2015 09:09 — forked from dbc-challenges/index.html
DBC Phase 2 Practice Assessment Part 3