用友2018校招web前端笔试题(四)
时长:120分钟 总分:100分
119浏览 0人已完成答题
题型介绍
题型 | 判断题 | 简答题 |
---|---|---|
数量 | 3 | 5 |
下面console的输出结果是[$##$]。 var name = “...
var name = “one” var User = function ( ) { this.name = “two” } var obj = User( ) console.log(name)
阅读如下代码,请问两处console的输出结果[$##$][$##$]。 ...
var Product = { count: 1, getCount: function( ) { return this.count++ } } console.log(Product.getCount( )) var func = Product.getCount console.log(func( ))
编写一个JavsScript函数 fn,该函数有一个参数 n(数字类型, ...
请为所有数组对象添加一个通用的remove方法,参数是数组元素的索引值,实...
请为所有数组对象添加一个通用的remove方法,参数是数组元素的索引值,实现删除指定数组元素的索引的功能。(可以写伪代码)
例如:var arr=[1,2,3,4,5,6] arr.remove(3) 修改后的arr为[1,2,3,5,6]。