Skip to content

Instantly share code, notes, and snippets.

View Jadedvi104's full-sized avatar
🎯
Focusing

Jirayu Nakplean Jadedvi104

🎯
Focusing
View GitHub Profile
@Jadedvi104
Jadedvi104 / hyper.js
Created October 28, 2021 11:39 — forked from coco-napky/hyper.js
Hyper config for git bash in Windows
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',
var array1 = new Array("a","e","c","d","e","f");
for (var i = 0; i < array1.length; i++) {
array1 = array1.filter(function( item, index, inputArray ) {
return inputArray.indexOf(item) == index;
});
}
alert(array1);