Last active
August 29, 2015 14:20
-
-
Save scabbiaza/7223df12d72fb5afd2f5 to your computer and use it in GitHub Desktop.
JS sketches
This file contains 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
// check that event.target is the one that we need | |
var isNavbarToogle = event.target.path.filter(function(item) { | |
return (item.classList.contains("navbar-toggle") || item.classList.contains("navbar-header")); | |
}).length == 2; | |
// to know when gulp task is end | |
Gulp.task("name", function () { | |
console.log('started >>>'); | |
return ..... | |
.pipe(Gulp.dest("build")) | |
.on("end", () => { | |
console.log('ended >>>'); | |
}); | |
}); | |
// remove empty values and dups from the array | |
let list = ["", "", "a", "b", "a", "", "c", "bb", "d", "", "bb"]; | |
list = list.filter((item, key) => item ? item && list.indexOf(item) == key : false); | |
console.log('expect: [ "a", "b", "c", "bb", "d" ]'); | |
console.log('list :', list); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment