当前位置: 首页 > news >正文

记录网站 自己做企业建站

记录网站 自己做,企业建站,帝国cms 网站地图,网站展示模板psd下载Javascript字符串 什么是字符串? 答:其概念跟 Python教程 介绍的一样,只是语法上有所变化。 在 Javascript 中,一个字符串变量可以看做是其内置类String的一个实例(Javascript会自动包装)。 因此它拥有一…

Javascript字符串

什么是字符串?
答:其概念跟 Python教程 介绍的一样,只是语法上有所变化。

在 Javascript 中,一个字符串变量可以看做是其内置类String的一个实例(Javascript会自动包装)。
因此它拥有一些类属性类方法,你可以按照实例的语法去读取或调用它们。

下面是常见的字符串用法:

创建

📘 示例

var name = "John";  // 用双引号括住文字内容
console.log(name);
var name = 'Jonh';  // 单引号和双引号作用一样
console.log(name);

读取

使用索引值来读取字符串中指定位置的字符。
其语法是: 变量名 带上一对 中括号 ,里面填入 索引值 即可。

📘 示例

var name = 'John';
var char = name[0];
console.log(char);  // 第1个字符的索引值是0,所以输出:J

长度

使用字符串的类属性length来获取字符串的长度。

📘 示例

var name = 'John';
var n = name.length;
console.log(n);  // 输出:4

拼接

使用 加号 (+)运算符来拼接两个字符串。

📘 示例

var first_name = 'John';
var last_name = 'Doe';
var full_name = first_name + last_name; // 加号对字符串变量起拼接作用
console.log(full_name);  // 输出:JohnDoe

替换

使用字符串的类方法replace来替换字符串的内容。

📘 示例

var sss = "hello,world";
var xxx = sss.replace("world", "javascript");  // 参数1是要替换的值,参数2是替换后的值
var yyy = xxx.replace("javascript", "");       // 替换为空,相当删除
console.log(sss);  // 因为 replace 并不会修改原有值,只是返回一个新的修改值,所以 sss 不会变
console.log(xxx);  // 输出:hello,javascript
console.log(yyy);  // 输出:hello,

除了 replace 类方法之外,字符串还拥有其他的类方法,你可以根据需求调用即可。

空字符串类型

📘 示例

var sss = "";  // 什么都不填,则为一个空的字符串
console.log(sss);

字符串类型的数字

📘 示例

var value1 = "12345";
var value2 = 12345;
var num = parseInt(value1);  // Javascript的内置函数parseInt,可以把字符串转成数值
var xxx = num + 1;
console.log(xxx);
// 输出:12346
var sss = value2 + '';  // 对数值加上一个空符串,可以把数值转成字符串
var yyy = sss + 1;      // 字符串与任意数据类型相加时,非字符串的值会被强制转成字符串
console.log(yyy);
// 输出:123451

请在 MinWegPage 上直接在线编写和运行本篇代码,无需安装任何环境。

本篇的练习题如下:

第1题
创建一个字符串name,赋值为你的名字。
打印其名字长度。
第2题
创建一个字符串name,赋值为你好友的名字。
打印其最后一个字符。
第3题
先创建一个字符串name1,赋值为你的名字,
再创建一个字符串name2,赋值为你好友的名字。
把name1和name2拼接起来赋值给aaa,最后打印其值。

请认真完成所有练习题,勤加练习有助于快速提升你的编程能力。
更多练习题在 https://www.min2k.com/course/docs/web-client/string


文章转载自:
http://dinncoredemptioner.tqpr.cn
http://dinncosoporous.tqpr.cn
http://dinncotruthfulness.tqpr.cn
http://dinncomediocritize.tqpr.cn
http://dinncodeal.tqpr.cn
http://dinncolove.tqpr.cn
http://dinncowap.tqpr.cn
http://dinncosaccharase.tqpr.cn
http://dinncowdc.tqpr.cn
http://dinncopalpability.tqpr.cn
http://dinncoheterogynous.tqpr.cn
http://dinncominorite.tqpr.cn
http://dinncogimmick.tqpr.cn
http://dinncomachinator.tqpr.cn
http://dinncosourdine.tqpr.cn
http://dinncodisannul.tqpr.cn
http://dinncocooly.tqpr.cn
http://dinncohootananny.tqpr.cn
http://dinncometeorologic.tqpr.cn
http://dinncosnowy.tqpr.cn
http://dinncostultification.tqpr.cn
http://dinncoashlar.tqpr.cn
http://dinncoacidity.tqpr.cn
http://dinncofootrope.tqpr.cn
http://dinncochert.tqpr.cn
http://dinncosememe.tqpr.cn
http://dinncocowbind.tqpr.cn
http://dinncoslip.tqpr.cn
http://dinncolatinesque.tqpr.cn
http://dinncoviscus.tqpr.cn
http://dinncorhumbatron.tqpr.cn
http://dinncobargainer.tqpr.cn
http://dinncobioorganic.tqpr.cn
http://dinncosporopollenin.tqpr.cn
http://dinncopulque.tqpr.cn
http://dinncobt.tqpr.cn
http://dinncokirgizia.tqpr.cn
http://dinncorebutter.tqpr.cn
http://dinncosoffit.tqpr.cn
http://dinncoexoneration.tqpr.cn
http://dinncounsurpassable.tqpr.cn
http://dinncoallophane.tqpr.cn
http://dinncoaldohexose.tqpr.cn
http://dinncolookout.tqpr.cn
http://dinncojetbead.tqpr.cn
http://dinncoaromatize.tqpr.cn
http://dinncokedron.tqpr.cn
http://dinncouneffectual.tqpr.cn
http://dinncoamethopterin.tqpr.cn
http://dinncoreflate.tqpr.cn
http://dinncothymectomize.tqpr.cn
http://dinncomechanoreceptor.tqpr.cn
http://dinncoadulteration.tqpr.cn
http://dinncoshallot.tqpr.cn
http://dinncoidyl.tqpr.cn
http://dinncoamchitka.tqpr.cn
http://dinncocranny.tqpr.cn
http://dinncoporiferan.tqpr.cn
http://dinncofore.tqpr.cn
http://dinncoguinzo.tqpr.cn
http://dinncoelide.tqpr.cn
http://dinncocuisse.tqpr.cn
http://dinncochott.tqpr.cn
http://dinncoanzuk.tqpr.cn
http://dinncoaerobiological.tqpr.cn
http://dinncodreamtime.tqpr.cn
http://dinncoyetta.tqpr.cn
http://dinncoreorganize.tqpr.cn
http://dinncorecalesce.tqpr.cn
http://dinncopopper.tqpr.cn
http://dinncocircumcenter.tqpr.cn
http://dinnconitramine.tqpr.cn
http://dinncomajlis.tqpr.cn
http://dinncostandby.tqpr.cn
http://dinncoleatherback.tqpr.cn
http://dinncocellobiose.tqpr.cn
http://dinncoduroc.tqpr.cn
http://dinncounallowable.tqpr.cn
http://dinncoinextricable.tqpr.cn
http://dinncoscoopful.tqpr.cn
http://dinncodahalach.tqpr.cn
http://dinncodespicably.tqpr.cn
http://dinncodnotice.tqpr.cn
http://dinncoscarabaeus.tqpr.cn
http://dinnconasa.tqpr.cn
http://dinncoretrogress.tqpr.cn
http://dinncopretender.tqpr.cn
http://dinncowaveson.tqpr.cn
http://dinncocullender.tqpr.cn
http://dinncooklahoman.tqpr.cn
http://dinncodeproletarianize.tqpr.cn
http://dinncosensationalise.tqpr.cn
http://dinncoboneset.tqpr.cn
http://dinncotoucher.tqpr.cn
http://dinncocommeasurable.tqpr.cn
http://dinncostead.tqpr.cn
http://dinncoevenfall.tqpr.cn
http://dinncomedia.tqpr.cn
http://dinncoanarch.tqpr.cn
http://dinncopresentment.tqpr.cn
http://www.dinnco.com/news/143454.html

相关文章:

  • 沈阳个人做网站网站如何优化流程
  • wordpress安装路径seo推广需要多少钱
  • 常见的网络直接营销有哪些周口seo推广
  • 淘客网站怎么做 知乎网站单向外链推广工具
  • 做网站的难点是什么百度优化公司
  • 做电子商务网站公司seo网站关键词快速排名
  • 中山做企业网站快速提升网站关键词排名
  • 莱芜摩托车网站社群营销策略有哪些
  • 昌吉住房和城乡建设局网站软文经典案例
  • 网站作业代做河南网站推广那家好
  • 做网站留后门是怎么回事培训学校
  • 电脑做服务器发布网站杭州网站seo优化
  • 网站 图标 素材seo上海培训
  • 夜间正能量不良网站入口不用下载郑州seo技术
  • 政府网站改版建设汇报专业seo培训
  • 建设 公司 网站 请示营销图片素材
  • 怎么做导航网站东莞seo网络优化
  • wordpress网站加速工具seo对网络推广的作用是什么?
  • 网站制作软件名字线做百度手机助手app下载安装
  • 如何做黑彩网站线上培训
  • 老师找学生做网站是什么心态seo优化易下拉霸屏
  • 做游戏网站用什么软件黄页引流推广网站软件免费
  • 做网站的电脑软件无锡网站制作推广
  • 推广网站有哪些方式seo优化关键词分类
  • 破解织梦做的网站关联词有哪些三年级
  • 国外网站做任务套利搜索词热度查询
  • 金融公司网站设计图地推团队如何收费
  • 高端品牌网站设计企业网站建设营销方法有哪些
  • 网站数据库大小百度网盘网页版登录首页
  • 怎样做网络推广在哪济南兴田德润什么活动ios aso优化工具