“Test”的版本间的差异
来自Labplus盛思维基百科
小 |
小 |
||
第2行: | 第2行: | ||
* [[ labplus软件安装指南]] | * [[ labplus软件安装指南]] | ||
{{111}} | {{111}} | ||
+ | <source lang="javascript" line start="2" highlight="4-6"> | ||
+ | // SyntaxHighlighter makes your code snippets beautiful without tiring your servers. | ||
+ | // http://alexgorbatchev.com | ||
+ | var setArray = function(elems) { | ||
+ | this.length = 0; | ||
+ | push.apply(this, elems); | ||
+ | return this; | ||
+ | } | ||
+ | </source> |
2018年3月8日 (四) 17:15的版本
// SyntaxHighlighter makes your code snippets beautiful without tiring your servers.
// http://alexgorbatchev.com
var setArray = function(elems) {
this.length = 0;
push.apply(this, elems);
return this;
}