Skip to main content
Yiju Care GuidePreparing your page
医疗级专业核验
透明收费 · 拒绝隐形 Daily 08:00-20:00

Verified Listings · Professional Advisors · Free Matching

Find Senior Communities

Compare communities by location, care needs and budget, with clear pricing, availability and verified service details.

  • 2,486 communities
  • 38 service cities
  • 7×12h Advisor Hours

Senior Care News & Communities

On this page 8 items
View All Communities
数组的拼接News
Senior Care News

数组的拼接

假如你和寝室的另外3个同学一起出去吃午饭。①用一个数组nameArr表示你们的名字。 ②分别吃的是鱼香肉丝、青椒炒肉、红烧牛肉、番茄炒西红柿。用数组foodArr表示你们吃的4种菜。 ③分别打印出每个人吃的菜。例如:”张三吃的是鱼香肉丝”。(考点:数组遍历、数组元素访问) 方法...

Read More
判断本月休息天数News
Senior Care News

判断本月休息天数

假如本月有30天,第1天开始上课。严格按照上2天自习一天,上2天休息一天的作息来执行。请使用数组month保存30个元素,rest保存休息的天数,study保存自习的天数,得出这个月总共休息多少天,自习多少天 <!DOCTYPE html> <html>...

Read More
Js给空数组生成1-n的值News
Senior Care News

Js给空数组生成1-n的值

方法一:循环赋值 var arr = new Array(100); for(var i=0;i<arr1.length;i++){ arr1 = i; } 方法二:push方法实现 var arr = new Array(); for(var i=0;i<100;...

Read More
求数组中最大值News
Senior Care News

求数组中最大值

方法一: arr = ; let max = arr; arr.forEach(function(v, i) { if (v > max) { max = v; } }) console.log("最大值:", max) 方法二: arr = let max = arr;...

Read More
商品计算News
Senior Care News

商品计算

张大头开了一个超市,平时所有商品在进货价的基础上,提价40%销售,到国庆节这天要做全场活动,在平时售价的基础上全场打8折。 请编写函数计算所有商品的打折价。 如:洗衣粉进货价 3.7元,法式小面包进货价6.2元,苹果进货价 2.66元。(考点:函数定义、函数调用、参数传递、返回值...

Read More
函数封装计算商品价格News
Senior Care News

函数封装计算商品价格

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <!-- ...

Read More
JS三目运算比大小News
Senior Care News

JS三目运算比大小

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <scri...

Read More

Selection Guide