Here are a few tips to make you awesome at Cacher.
// 基于原型链创建对象的两种方法
function c1(){
this.p1 = 1;
this.p2 = function(){
console.log(this.p1);
}
}
var o1 = new c1;
o1.p2();
function c2(){
}
c2.prototype.p1 = 1;
c2.prototype.p2 = function(){
console.log(this.p1);
}
var o2 = new c2;
o2.p2();
Snippets are the most useful when you want to re-use a command or a specific code pattern. Here are a few we have in our library:
Labels are a great way to organize your snippets. A good practice is to have one for every major product feature. We've created the first label for you - Documentation.
snippets.cacher.io is our community for Cacher users. Every snippet from your library has a public-facing page on the site. Check out the SHARE PAGE control at the top of this snippet to see its URL.
Teams allow you and your colleagues to build a shared knowledge base. Use Markdown to write beautifully formatted documentation.
Use these keyboard shortcuts to get around Cacher quickly.
Don't like working with a bright interface? Try switching to a dark theme: User Dropdown > Personal Settings > Themes. Learn more about themes.