##定义 object.assign用于对象的合并,将源对象(source)的所有可枚举属性复制到目标对象(target)中 let targetObj = { a: 1 }; let sourceObj1 = { b: 2 }; let sourceObj2 = { c: 3 }; Object. ...
分类:
Web程序 时间:
2020-07-23 16:20:10
阅读次数:
79
数组对象的深拷贝 function copydeep(obj) { var newobj = obj.constructor Array ? [] : {}; if (typeof obj !== 'object') { return; } for (var i in obj) { newobj[i ...
分类:
Web程序 时间:
2020-07-23 16:14:18
阅读次数:
74
JSON JavaScript Object Notation js对象表示法 js中的对象只有js自己认识,其他语言都不认识 JSON就是一个特殊格式的字符串,这个字符串可以被任意语言所识别 并且可以转换为任意语言中的对象,JSON在开发中主要是用来数据的交互 JSON和js对象的格式一样,只不过 ...
分类:
Web程序 时间:
2020-07-23 16:12:09
阅读次数:
79
public class DeadLock{ static Object o1 = new Object(); static Object o2 = new Object(); public static void main(String[] args) { new Thread(new Runna ...
分类:
其他好文 时间:
2020-07-23 15:51:59
阅读次数:
62
一、验证表单 封装一个函数用于验证手机号 /** * @param {String}eleId * @param {Object}reg */ function checkInput(eleId,reg) { var ele = document.getElementById(eleId); ele ...
分类:
编程语言 时间:
2020-07-23 09:15:36
阅读次数:
82
Document Object Model DOM0 DOM1 1998 年 w3c标准 DOM2 2000 年( 主讲) DOM3 2004 年( 主讲) DOM4 2015 年 节点Node:元素、标签 节点名称 节点类型 节点的值 NodeName NodeType NodeValue 元素节 ...
分类:
其他好文 时间:
2020-07-23 01:46:43
阅读次数:
78
Given an array arr. You can choose a set of integers and remove all the occurrences of these integers in the array. Return the minimum size of the set ...
分类:
其他好文 时间:
2020-07-22 20:09:57
阅读次数:
70
JavaScript的默认使用 {} 来表示对象、集合。 Map是一个带 键 的数据项的集合,类似Object。通常是一个键对应一个值。{key:vale} Set是一个特殊的,只含有键(也可以称为特殊值,我感觉和map中的键差不多)的一个集合。{key} 定义Map的方法 let col = ne ...
分类:
其他好文 时间:
2020-07-22 16:01:13
阅读次数:
66
Given an array nums of n integers where n > 1, return an array output such that output[i] is equal to the product of all the elements of nums except n ...
分类:
其他好文 时间:
2020-07-22 15:50:36
阅读次数:
67
Given a list of folders, remove all sub-folders in those folders and return in any order the folders after removing. If a folder[i] is located within ...
分类:
其他好文 时间:
2020-07-22 15:45:22
阅读次数:
74