昼猫笔记--给你带来不一样的笔记

不止是笔记 更多的是思考

上一期咱们大概了解了下什么是JavaScript,想必大家也都知道

今天主要说下Js中的数据类型

在Js中一共分为六种数据类型

其中基本数据类型有

-

String 字符串

-
Number数值

-
Boolean布尔值

-
Null空值

-
Undefined未定义

引用数据类型有

-
Object对象

String 字符串

首先从String开始说起

字符串是存储字符(比如 Bill Gates)的变量

在Js中的字符串需要使用引号引起来(单引号或者双引号都可以
要用英文写
)

String 对象方法


indexof()

该方法可返回某个指定的字符串值在字符串中首次出现的位置。并返回第一次出现的位置。

语法: 对象.indexof()

注意:indexof()区分大小写

如果要检索的字符串值没有出现,则该方法返回 -1

var str = "昼猫笔记";
console.log(str.indexOf("笔记")); //2 var str = "hello word";
console.log(str.indexOf("l")); // 2


lastIndexOf()

该方法可返回一个指定的字符串值
最后出现的位置,在一个字符串中的指定位置从后向前搜索。

语法:
对象.IastIndexOf()

注意:indexof()区分大小写

如果要检索的字符串值没有出现,则该方法返回 -1

var str = "昼猫笔记";
console.log(str.lastIndexOf("哈哈")); //-1 var str = "hello word";
console.log(str.lastIndexOf("l")); //3


concat()

该方法用于连接两个或多个字符串。

语法:对象.concat(str)

注意:使用  +  运算符来进行字符串的连接运算通常会更简便一些

var str = "昼猫笔记";
var str2 = "hello word";
console.log(str.concat(str2)); //昼猫笔记hello word


slice()
         该方法可提取字符串的某个部分,并以新的字符串返回被提取的部分。

语法:
对象.slice(start,end)    //不包括end

var str = "hello word";
console.log(str.slice(0, 2)); //he  (从索引0开始到2结束不包括2)

- toLowerCase()

该方法用于把字符串转换为小写。

语法:
对象.toLowerCase()

var str = "Hello Word";
console.log(str.toLowerCase()); //hello word


toUpperCase()

该方法用于把字符串转换成大写。

语法:对象.toUpperCase()

var str = "Hello Word";
console.log(str.toLowerCase()); //HELLO WORD

String 总结

在练习String的时候大家千万要注意的是要
+
引号

以上提到的String的方法是在以后会经常用到的但是不包括全部

对其他方法感兴趣的小伙伴可以去w3c学院、菜鸟教程查看更多方法

Js中的数据类型--String的更多相关文章

  1. js中的数据类型

    JS中的数据类型: ——数字  (number)NaN ——字符串(string) ——布尔  (boolean)——函数  (function)     也是对象的一种 ——对象  (object) ...

  2. 如何判断js中的数据类型?

    js六大数据类型:number.string.object.Boolean.null.undefined string: 由单引号或双引号来说明,如"string" number: ...

  3. 如何判断js中的数据类型

    如何判断js中的数据类型:typeof.instanceof. constructor. prototype方法比较 如何判断js中的类型呢,先举几个例子: var a = "iamstri ...

  4. [转]如何判断js中的数据类型

    原文地址:http://blog.sina.com.cn/s/blog_51048da70101grz6.html 如何判断js中的数据类型:typeof.instanceof. constructo ...

  5. 浅谈js中的数据类型,使用typeof获取js数据类型

    JS中的数据类型 1):Undefined——值未定义 注:Undefined类型只有一个值,即特色的undefined.在使用var声明变量但未对其加以初始化时,这个变量的值就是undefined ...

  6. 如何判断js中的数据类型(转)

    如何判断js中的数据类型:typeof.instanceof. constructor. prototype方法比较 如何判断js中的类型呢,先举几个例子: var a = "iamstri ...

  7. 判断js中的数据类型

    如何判断js中的数据类型:typeof.instanceof. constructor. prototype方法比较 如何判断js中的类型呢,先举几个例子: var a = "iamstri ...

  8. js中的数据类型及其转换

    Js中的数据类型 Js中的数据类型一共有六种,即number,string,boolean,underfine,null,object. 一,number Number数据类型指的是数字,可以为整型, ...

  9. JS中的数据类型和转换

    一.JS中的数据类型 js中的数据类型可以分为五种:number .string .boolean. underfine .null. number:数字类型 ,整型浮点型都包括. string:字符 ...

随机推荐

  1. Hive-jdbc获取sessionId

    在HiveStatement中有一个sessHandle: public class HiveStatement implements java.sql.Statement { ... private ...

  2. [MST] Store Store in Local Storage

    For an optimal user and developer experience, storing state in local storage is often a must. In thi ...

  3. 【甘道夫】Sqoop1.99.3基础操作--导入Oracle的数据到HDFS

    第一步:进入clientShell fulong@FBI008:~$ sqoop.sh client Sqoop home directory: /home/fulong/Sqoop/sqoop-1. ...

  4. View注入框架:Butterknife简单使用

    View注入框架 下载地址 1.Activity Binging 通过@Bind凝视字段,Butter Knife能够通过View的ID自己主动找到并把对应的视图布局. class ExampleAc ...

  5. less05 作用域

    less @clolor:#ffffff; .bgcolor{ width: 50px; a{ color: @clolor; } @clolor:#ff0000; //覆盖,作用域跟js一样,现在局 ...

  6. [C++] upper_bound和lower_bound

    upper_bound 源码 template <class ForwardIterator, class T> ForwardIterator upper_bound (ForwardI ...

  7. [转]A reference to a higher version or incompatible assembly cannot be added to the project

    If you face this error message while adding a reference to your project in Visual Studio try the fol ...

  8. 使用regasm注册.net com组件出现不是有效的.net程序集的解决办法

    作者:朱金灿 来源:http://blog.csdn.net/clever101 在电脑上装有VS 2008和VS 2010.使用VS 2010编写了一个C# com组件:MyCom(基于.net f ...

  9. (VC)搭建OpenGL编程环境

    1.下载glut工具包 opengl需要用到的库.下载glut: http://pan.baidu.com/s/1i4c8sHf 2.安装glut a)解压上面下载到的glut工具包后会得到5个文件, ...

  10. MVC中几种常用的ActionResult

    一.定义 MVC中ActionResult是Action的返回结果.ActionResult 有多个派生类,每个子类功能均不同,并不是所有的子类都需要返回视图View,有些直接返回流,有些返回字符串等 ...