JavaScript--FreeCodeCamp

  1. "=='
    string中如果需要用嵌套引号,可以转义双引号也可以交替使用单引号

想到一个段子(不无聊的可略过)
问:有没有什么无意中暴露自己的经历?
答:某日,一妹子问string这单词什么意思,张口就答字符串。

  1. 如果想通过数组索引来改变一个字符串某位置的值是不行的,需要重新给该字符串赋值,应该是值传递和引用传递的区别
//错误示范
var myStr = "Bob";
myStr[0] = "J";
//正确示范
var myStr = "Bob";
myStr[0] = "J";

(太基础了,看的我好无聊,感觉马上可以写一个关于各种教程网站的测评了。。。)

  1. arr.push(element-value); 在数组后面拼接element
    arr.pop();
  2. .shift(); function to remove the first item from myArray
    unshift(element-value); adds the element at the beginning of the array.
  3. It is possible to have both local and global variables with the same name. When you do this, the local variable takes precedence over the global variable.
  4. 注意:把函数返回值赋给变量和把函数赋给变量不一样
  5. a queue is an abstract Data Structure where items are kept in order。New items can be added at the back of the queue and old items are taken off from the front of the queue
  6. 也讲到了调用object属性时候的两种方式:一种是.语法,一种是[],区别在于[]中可以放有空格的字符串,比如obj["hi xy"], 当然这个“hi xy”也可以赋值给一个变量hi,然后obj[hi], 一个意思
  7. 接下来,能表示某个属性,也就可以改变属性值或者增加属性并赋给属性一个值,注意,删除delete obj.prop;
  8. 从switch case表示方法换成object中k-v表示
  9. check if the property of a given object exists or not. .hasOwnProperty(propname) returns true or false.
  10. record collection answer-gist link
    对英文的需求有点费解,但程序很简单
  11. 遍历obj记得用for in
function lookUpProfile(firstName, prop){
  for(var i = 0; i <contacts.length; i++){
        if (firstName===contacts[i].firstName){
           for(var p in contacts[i]){
             if (prop===p){
               return contacts[i][p];
             }
           }
            return "No such property";
        }  
  }
  return "No such contact";
}
  1. generate a random whole number between 0 and 9
    要whole number用Math.floor(),向下取整,down to the closest number.
    Math.floor((Math.random()*10))
    random(): Return a random number between 0 (inclusive) and 1 (exclusive):
  2. 在min到max中选一个随机整数,注意上面写的,左闭右开,所以要+1
    return Math.floor(Math.random() * (myMax - myMin + 1)) + myMin;
  3. 正则/\d+/gi匹配数字,g--global \s--space
// This code counts the matches of expression in testString
var andCount = testString.match(expression).length;
  1. To create objects using constructor functions.
    A constructor function is given a capitalized name to make it clear that it is a constructor
    this refers to the new object being created by the constructor
  2. private prop
var Car = function() {
    // this is a private variable
      var speed = 10;
      // these are public methods
      this.accelerate = function(change) {
          speed += change;
      };
      this.decelerate = function() {
          speed -= 5;
      };
      this.getSpeed = function() {
          return speed;
      };
  };
var Bike = function() {
      var gear;
      this.getGear = function(){
        return this.gear;
      };
      this.setGear = function(Gear){
        this.gear = Gear;
      };
    // Only change code below this line.
};
  1. map
var oldArray = [1, 2, 3];
var timesFour = oldArray.map(function(val){  
    return val * 4;
});
console.log(timesFour); // returns [4, 8, 12]
  1. reduce, iterate through an array and condense it into one value.
    比如求所有元素和
var array = [4,5,6,7,8];
var singleVal = 0;
 singleVal = array.reduce(function(previousVal, currentVal) {
  return previousVal + currentVal;
}, 0);
  1. The filter method is used to iterate through an array and filter out elements where a given condition is not true.
var newArray = oldArray.filter(function(val){
      return val<6;
});
  1. sort:
    sort can be passed a compare function as a callback. The compare function should return a negative number if a should be before b, a positive number if a should be after b, or 0 if they are equal.
array.sort(function(a, b) {
      return a - b;
});
//smallest to biggest
  1. array.reverse();
  2. newArray = oldArray.concat(otherArray);
  3. string.split(' ') 参数为分隔符
  4. arr.join(' ')参数为连接符

over。下一部分居然是算法题。。。


words:

Truncate
quotient
Convert Celsius to Fahrenheit 摄氏度--华氏度

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容