找到关于面向对象编程的9301篇文章

从数组中提取唯一值 - JavaScript

AmitDiwan
更新于2020年9月30日 13:33:36

4K+ 次浏览

假设我们有一个包含重复元素的数组,例如:const arr = [1,1,2,2,3,4,4,5];我们需要编写一个JavaScript函数,它接收这样一个数组并返回一个新数组。新数组只包含在原始数组中只出现一次的元素。示例以下代码:const arr = [1,1,2,2,3,4,4,5]; const extractUnique = arr => {    const res = [];    for(let i = 0; i < arr.length; i++){       if(arr.lastIndexOf(arr[i]) !== arr.indexOf(arr[i])){          continue;       };       res.push(arr[i]);    };    return res; }; console.log(extractUnique(arr));输出这将在控制台中产生以下输出:[ 3, 5 ]

数组中所有素数之和 - JavaScript

AmitDiwan
更新于2020年9月30日 13:32:29

898 次浏览

我们需要编写一个JavaScript函数,它接收一个数字数组。该函数应返回数组中所有素数的和。假设以下为我们的数组:const arr = [43, 6, 6, 5, 54, 81, 71, 56, 8, 877, 4, 4];该函数应将素数相加,即43 + 5 + 71 + 877 = 996示例以下代码:const arr = [43, 6, 6, 5, 54, 81, 71, 56, 8, 877, 4, 4]; const isPrime = n => {    if (n===1){       return false;    }else if(n ... 阅读更多

将反斜杠替换为正斜杠 - JavaScript

AmitDiwan
更新于2020年9月30日 13:31:09

773 次浏览

我们需要编写一个JavaScript函数,它接收一个可能包含一些反斜杠的字符串。该函数应返回一个新字符串,其中所有反斜杠都替换为正斜杠。假设以下为我们的字符串:const str = 'Th/s str/ng /conta/ns some/ forward slas/hes';示例以下代码:const str = 'Th/s str/ng /conta/ns some/ forward slas/hes'; const invertSlashes = str => {    let res = '';    for(let i = 0; i < str.length; i++){       if(str[i] !== '/'){          res += str[i];          continue; ... 阅读更多

检查JavaScript中的字符串是否已排序

AmitDiwan
更新于2020年9月30日 13:29:59

432 次浏览

我们需要编写一个JavaScript函数,它接收一个字符串并检查它是否已排序。例如:isSorted('adefgjmxz')  // true isSorted('zxmfdba')     // true isSorted('dsfdsfva')     // false示例以下代码:const str = 'abdfhlmxz'; const findDiff = (a, b) => a.charCodeAt(0) - b.charCodeAt(0); const isStringSorted = (str = '') => {    if(str.length < 2){       return true;    };    let res = ''    for(let i = 0; i < str.length-1; i++){       if(findDiff(str[i+1], str[i]) > 0){          res += 'u';     ... 阅读更多

根据具有虚假值的属性对数组对象进行排序 - JavaScript

AmitDiwan
更新于2020年9月30日 13:28:40

164 次浏览

假设我们有这样的对象数组:const array = [    {key: 'a', value: false},    {key: 'a', value: 100},    {key: 'a', value: null},    {key: 'a', value: 23} ];我们需要编写一个JavaScript函数,它接收这样一个数组,并将所有“value”属性值为假的值的对象放在底部,并按“value”属性的降序对所有其他对象进行排序。示例以下代码:const arr = [    {key: 'a', value: false},    {key: 'a', value: 100},    {key: 'a', value: null},    {key: 'a', ... 阅读更多

统计元音和辅音的出现次数 - JavaScript

AmitDiwan
更新于2020年9月30日 13:27:25

428 次浏览

我们需要编写一个JavaScript函数,它接收一个包含英文字母的字符串,例如:const str = 'This is a sample string, will be used to collect some data';该函数应返回一个对象,其中包含字符串中元音和辅音的计数,即输出应为:{ vowels: 17, consonants: 29 }示例以下代码:const str = 'This is a sample string, will be used to collect some data'; const countAlpha = str => {    return str.split('').reduce((acc, val) => {       const legend = 'aeiou';       ... 阅读更多

从JavaScript中的数字列表中获取等于或大于的数字

AmitDiwan
更新于2020年9月30日 13:25:50

692 次浏览

我们需要编写一个JavaScript函数,它接收一个数字数组作为第一个参数,一个数字作为第二个参数。该函数应返回一个数组,其中包含输入数组中所有大于或等于第二个参数的数字的元素。示例以下代码:const arr = [56, 34, 2, 7, 76, 4, 45, 3, 3, 34, 23, 2, 56, 5]; const threshold = 40; const findGreater = (arr, num) => {    const res = [];    for(let i = 0; i < arr.length; i++){ ... 阅读更多

在JavaScript中从两个值和键数组构建映射

AmitDiwan
更新于2020年9月30日 13:24:32

5K+ 次浏览

假设我们有两个数组:const keys = [0, 4, 2, 3, 1]; const values = ["first", "second", "third", "fourth", "fifth"];我们需要编写一个JavaScript函数,它接收键和值数组并将值映射到相应的键。输出应为:const map = {    0 => 'first',    4 => 'second',    2 => 'third',    3 => 'fourth',    1 => 'fifth' };示例以下代码:const keys = [0, 4, 2, 3, 1]; const values = ["first", "second", "third", "fourth", "fifth"]; const buildMap = (keys, values) => { ... 阅读更多

按属性删除数组重复项 - JavaScript

AmitDiwan
更新于2020年9月30日 13:23:13

166 次浏览

假设我们有这样的对象数组:const arr = [{name: "Jack", age: "14"}, {name: "bob", age: "14"}, {name: "sue", age: "21"}, {name: "Jill", age: "16"}, {name: "Jack", age: "21"}];我们需要编写一个JavaScript函数,它接收这样一个数组并删除所有名称值重复的对象。因此,对于上述数组,输出应为:const arr = [{name: "Jack", age: "14"}, {name: "bob", age: "14"}, {name: "sue", age: "21"}, {name: "Jill", age: "16"}];示例以下代码:const arr = [    {name: "Jack", age: "14"},    {name: "bob", age: ... 阅读更多

JavaScript - 将数组转换为键值对

AmitDiwan
更新于2020年9月30日 13:21:57

6K+ 次浏览

假设我们有这样的数组:const arr = [ {"name": "Rahul", "score": 89},    {"name": "Vivek", "score": 88},    {"name": "Rakesh", "score": 75},    {"name": "Sourav", "score": 82},    {"name": "Gautam", "score": 91},    {"name": "Sunil", "score": 79}, ];我们需要编写一个JavaScript函数,它接收这样一个数组并构建一个对象,其中name值是键,score值是它们的值。使用Array.prototype.reduce()方法从数组构建对象。示例以下代码:const arr = [    {"name": "Rahul", "score": 89},    {"name": "Vivek", "score": 88},    {"name": ... 阅读更多

广告