• test


    <script>
    	// var c=[2,4,3,5,2,2,2],
    
    	// 	a = {},
    
    	// 	i = 0;
    
    	// 	for(;i<c.length;i++){
    
    	// 		a[c[i]] = 1
    	// 	}
    
    	// 	c=[];
    
    	// 	for(var g in a){
    
    	// 		c.push(g-0);
    	// 	}
    
    
    
    	// 	console.log(c); //删选数组中有无重复的数字
    
    
    	// var pattern1 = /s/;  //空格
    	// console.log(pattern1.test("njkhjkjk ")); //检查英文字是否有空格
    
    
    	 
    	
    
    
    
    	
    
    	
    
    	
    
    
    	// var nums = "132153132135",
    
    	// 	ary = [];
    
    	// 	nums.replace(/d{1,3}/g,function(num){ //d为正则,每三个分一组推入数组
    
    	// 			ary.push(num);
    
    
    	// 	});
    
             console.log(ary);
    
    	// 	console.log(Math.max.apply(null,ary));把数组中最大的那个打印出来
    
    
    
    
    
    // var o = new Object();
    // 	o.s=1;
    // 	// console.log(o.constructor);
    // 	if("toString" in o){
    
    // 		console.log("youshuxing");
    
    // 	}
    
    
    	// var ele = document.getElementById("test");
    
    	// if("placeholder" in ele){
    
    	// 	alert("支持");
    
    	// }else{
    
    	// 		alert("bu支持");
    
    	// }
    	
    // var name = "xu",
    
    // 	preson ={
    
    // 		name:"ren",
    
    // 		say:function(){
    
    // 			// var that = this;
    
    // 			// console.log(this.name);
    
    // 			var a =function(){
    
    // 					console.log(this.name);
    
    // 			};
    
    
    // 			a.call(preson);
    // 		}
    
    
    // 	};
    
    // preson.say();
    
    
    // function person(name,age,job){
    
    // 	this.name = name;
    // 	this.age = age;
    // 	this.job = job;
    
    // }
    
    
    // person.prototype.sayname=function(){
    
    // 	return this.name;
    // }
    
    // console.log(person.prototype.constructor);
    
    
    // var ren = new person("ren",22,"teacher");
    // var xu = new person("xu",18,"doctor");
    
    // console.log(ren.sayname());
    
    // console.log(xu.sayname());
    // ren.name = "lin";
    
    // console.log(ren.sayname());
    
    // console.log(ren.__proto__);
    // console.log(person.prototype.constructor);
    // console.log(person.prototype.isPrototypeOf(ren));
    
    // console.log(Object.getPrototypeOf(ren) == person.prototype);
    // console.log(Object.getPrototypeOf(ren).sayname);
    
    // console.log(Object.keys(person.prototype));
    // console.log(Object.getOwnPropertyNames({}));
    
    // function Person(){
    
    // }
    
    
    
    // Person.prototype = {
    
    // 	constructor:Person,
    // 	name : "xu"
    // }
    
    // var friend = new Person();
    
    // console.log(friend.name);
    
    
    Number.prototype.add=function(num){
    
     	return this + num;
     }
    
     console.log((2).add(3));
    
    
    String.prototype.Ltrim=function(){
    
     	return this.replace(/s/g,"");
     }
    
     console.log("1 2 3".Ltrim());
    
  • 相关阅读:
    一些坑点
    [Luogu P4168] [Violet]蒲公英 (分块)
    冬令营颓废笔记
    WC2019 填坑记
    [Luogu P1829] [国家集训队]Crash的数字表格 / JZPTAB (莫比乌斯反演)
    [Luogu P2522] [HAOI2011]Problem b (莫比乌斯反演)
    [Luogu P3327] [SDOI2015]约数个数和 (莫比乌斯反演)
    [Luogu P3455] [POI2007]ZAP-Queries (莫比乌斯反演 )
    [Luogu P2257] YY的GCD (莫比乌斯函数)
    杭电 1166 敌兵布阵 (线段树)
  • 原文地址:https://www.cnblogs.com/xupeiyu/p/4605234.html
Copyright © 2020-2023  润新知