Saniac Lovegood

"If you're nothing without this suit, then you shouldn't have it."

闭包的内存泄漏问题

不怕渗漏更安心,自由做自我。

内存泄漏的例子 window.onload = function(){ var el = document.getElementById("id"); el.onclick = function(){ alert(el.id); } } el的onclick属性中的匿名函数对象有对el的引用,这样就导致了循环引用。 由于js的垃圾回收机制,这种循...

Promise 临阵磨枪

I promise.

文中部分代码及文字摘自Promise迷你书 一步步来 var promise = new Promise(function(resolve,reject){ //处理状态结束后,调用resolve或reject }); Promise实例方法: resolve时调用onFilfilled,reject时调用OnRejected. 如果只想指定异常时的处理,可以用then(...

Leetcode二叉树相关题目-JS

二叉树上二叉果,二叉树下你和我。

102 Binary Tree Level Order Traversal Given a binary tree, return the level order traversal of its nodes’ values. (ie, from left to right, level by level). For example: Given binary tree [3,...

在Leetcode上刷题的时候学到的东西

扶朕起来,朕还能写一个通宵。

颠倒元音字母 Write a function that takes a string as input and reverse only the vowels of a string. Example 1: Given s = “hello”, return “holle”. Example 2: Given s = “leetcode”, return “leotce...

一些前端笔试题及仅供参考的个人解析

连跑带颠吧,骚年!

题目及部分思路来自这里,这里,以及这里。 1.选择符合预期的运行结果 function f1() { console.time('time span'); } function f2() { console.timeEnd('time span'); } setTimeout(f1, 100); setTimeout(f2, 200); function waitForMs(n) ...

Birth Of My Blog

"Hello World, Hello Blog"

“Yeah It’s on. ” 前言 终于弄好了这样一个地方了,好想叫他技术博客呀。 用的是黄玄大大的模板,这个模板项目的github地址是https://github.com/Huxpro/huxblog-boilerplate,谢谢每一个愿意无私分享,使这个世界变得越来越好越来越有爱的人们。他的另一个项目演说也很厉害,是一个云PPT,个人认为非常实用,感兴趣的话可以关注一...