Skip to main content

javascript Mutations

 Return true if the string in the first element of the array contains all of the letters of the string in the second element of the array.


For example, ["hello", "Hello"], should return true because all of the letters in the second string are present in the first, ignoring case.


The arguments ["hello", "hey"] should return false because the string hello does not contain a y.


Lastly, ["Alien", "line"], should return true because all of the letters in line are present in Alien.


function mutation(arr) {
  var temArr =[];
  for(let i=0;i<arr[1].length;i++)//要比较的是第二个数组的,所以放在外层,内层每次都要遍历第一个数组,让第二个数组中的字符去与每一个第一个数组中的字符比较,相等就push一个true,然后马上跳出内循环
  {
    for (let j=0;j<arr[0].length;j++)
    {
      if (arr[1][i].toUpperCase()==arr[0][j].toUpperCase())
      {
        temArr.push(true);
        break;//这个跳出很重要,如果继续循环,后来又比对成功,再push一个true就会导致我们的标志length不同
      }
    }

  }
  console.log(temArr.length);
  console.log(arr[1].length);
  if (temArr.length == arr[1].length)//说明每个元素都找到了,都包含
  {
    return true;
  }
  return false;
}

mutation(["hello""hey"]);

Comments

Popular posts from this blog

span[class~="sr-only"]

  The  span[class~="sr-only"]  selector will select any  span  element whose  class   includes   sr-only . Create that selector, and give it a  border  property set to  0 . span [ class ~= "sr-only" ] {    border:   0 ; }

Use Recursion to Create a Range of Numbers

  function   rangeOfNumbers ( startNum ,  endNum ) {    if ( startNum <= endNum )   {      const   arrNumber  =  rangeOfNumbers ( startNum ,  endNum - 1 );      arrNumber . push ( endNum );      return   arrNumber ;   }    else  {      return  [];   }       }; console . log ( rangeOfNumbers ( 6 , 8 ));//[6,7,8] console . log ( rangeOfNumbers ( 3 , 12 )); //[ 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ]

About the Little Lemon receipt maker exercise

 My homework and exercise of the lesson "About the Little Lemon receipt maker exercise" of the class "programming with Javascript" on coursera. const menu = [     {         Dish : "Italian pasta" ,         price : 9.55     },     {         Dish : "Rice with veggies" ,         price : 8.65     },     {         Dish : "Chicken with potatoes" ,         price : 15.55     },     {         Dish : "Vegetarian Pizza" ,         price : 6.45     } ]; function receiptMaker ( arr , bool ) {     if ( bool == false )     {         console . log ( "Prices without tax:" );         arr . forEach ( element => {             console . log ( `Dish: ${ element . Dish } Price (incl.tax):$ ${ element . price } ` );                     });     }     else     {         console . log ( "Prices with 20% tax:" );         arr . forEach ( element => {             console . log ( `Dish: ${ element . Dish } Price (inc