search
HomeWeb Front-endFront-end Q&Ajavascript various methods
javascript various methodsMay 09, 2023 pm 01:46 PM

JavaScript is a widely used programming language that can be used in many fields such as web development, game development, and mobile application development. Methods are a very important part of JavaScript development. This article will introduce various methods in JavaScript and demonstrate the application of these methods through examples.

Part 1: Basic method

  1. alert() method

alert() method is used to pop up a dialog box in the browser page, usually Used to display information or warnings to users.

Syntax:

alert("message");

Example:

alert("Welcome to my website!");

  1. prompt() method

prompt() method is used to pop up a dialog box to prompt the user to enter information. It returns the value entered by the user (of type string).

Syntax:

prompt("message","default value");

Example:

let name = prompt("Please enter your Name: ","Zhang San");

  1. console.log() method

console.log() method is the most commonly used method when debugging code. Use to output information on the console. It can output data of types such as strings, variables, objects and arrays.

Syntax:

console.log("message");

Example:

let num = 10;
console.log(" The number is " num);

  1. parseInt() method

parseInt() method is used to convert a string to an integer type. If conversion is not possible, NaN is returned.

Syntax:

parseInt(string, radix);

string: String to be converted to an integer.

radix: base conversion, optional. Defaults to 10 if not set.

Example:

let str = "123";
let num = parseInt(str);
console.log(num); //123

  1. parseFloat() method

The parseFloat() method is used to convert a string to a floating point number type. If conversion is not possible, NaN is returned.

Syntax:

parseFloat(string);

string: The string to be converted to a floating point number.

Example:

let str = "3.14";
let num = parseFloat(str);
console.log(num); //3.14

Part 2: Array methods

  1. push() and pop() methods

push() method is used to add an element at the end of the array, while pop() method Used to delete elements at the end of an array.

Syntax:

push(newelement);

pop();

Example:

let fruits = ["Apple" ,"Banana","Orange"];
fruits.push("Grape");
console.log(fruits); //["Apple","Banana","Orange","Grape" ]
fruits.pop();
console.log(fruits); //["Apple","Banana","Orange"]

  1. shift() and unshift( )Method

The shift() method is used to delete an element at the beginning of the array, while the unshift() method is used to add an element to the beginning of the array.

Syntax:

shift();

unshift(newelement);

Example:

let fruits = ["Apple" ,"Banana","Orange"];
fruits.unshift("Grape");
console.log(fruits); //["Grape","Apple","Banana","Orange" ]
fruits.shift();
console.log(fruits); //["Apple","Banana","Orange"]

  1. slice() method

The slice() method is used to intercept a segment of elements from an array. Note that it does not modify the original array, but returns a new array.

Syntax:

slice(start, end);

start: starting position, including this position.

end: End position, excluding this position.

If end is omitted, it will be intercepted from the starting position to the end of the array.

Example:

let fruits = ["Apple","Banana","Orange","Grape"];
let newfruits = fruits.slice(1,3);
console.log(newfruits); //["Banana","Orange"]

Part 3: String method

  1. toUpperCase() and toLowerCase() methods

The toUpperCase() method is used to convert a string to uppercase format, while the toLowerCase() method is used to convert a string to lowercase format.

Syntax:

toUpperCase();

toLowerCase();

Example:

let str = "Hello World";
let newstr1 = str.toUpperCase();
let newstr2 = str.toLowerCase();
console.log(newstr1); //"HELLO WORLD"
console.log(newstr2); //"hello world"

  1. indexOf() and lastIndexOf() methods

indexOf() method is used to get the position of a specified character or string in a string. If not found, returns -1. The lastIndexOf() method is similar to the indexOf() method, but starts searching from the end of the string.

Syntax:

indexOf(searchvalue, start);

searchvalue: The value to be found, which can be a character or a string.

start: optional parameter. Which index to start searching from.

lastIndexOf(searchvalue, start);

Example:

let str = "Hello World";
let pos1 = str.indexOf("l");
let pos2 = str.lastIndexOf("l");
console.log(pos1); //2
console.log(pos2); //9

  1. concat() method

The concat() method is used to concatenate multiple strings to generate a new string.

Syntax:

concat(string1, string2, ..., stringn);

Example:

let str1 = "Hello";
let str2 = "World";
let str3 = str1.concat(" ", str2);
console.log(str3); //"Hello World"

Part 4: Object method

  1. keys() and values() methods

The keys() method is used to get all the keys in the object, and the values() method is used to get all the values ​​in the object. They both return an array.

Syntax:

Object.keys(object);

Object.values(object);

Example:

let obj = {name:"Zhang San",age:18,city:"Beijing"};
let keys = Object.keys(obj);
let values ​​= Object.values(obj);
console .log(keys); //["name","age","city"]
console.log(values); //["Zhang San",18,"Beijing"]

  1. toString() method

The toString() method is used to convert objects into strings and is often used for debugging and logging.

Syntax:

object.toString();

Example:

let obj = {name:"张三",age:18,city :"Beijing"};
console.log(obj.toString()); //"[object Object]"

  1. hasOwnProperty() method

The hasOwnProperty() method is used to check whether a certain property exists in the object. Returns true if present, false otherwise.

Syntax:

object.hasOwnProperty(property);

property: The name of the property to be checked.

Example:

let obj = {name:"Zhang San",age:18,city:"Beijing"};
console.log(obj.hasOwnProperty("name" )); //true
console.log(obj.hasOwnProperty("gender")); //false

Part 5: Date method

  1. Date() method

Date() method is used to get or set the date and time. If no parameters are passed, the current date and time is returned.

Syntax:

new Date();

Example:

let date = new Date();
console.log(date) ; //Wed Aug 04 2021 15:41:10 GMT 0800 (China Standard Time)

  1. getDate(), getMonth() and getFullYear() methods

getDate () method is used to get the current date (the day of each month), while the getMonth() method is used to get the current month (0 means January, 11 means December), and the getFullYear() method is used to get the current month. years.

Syntax:

getDate();

getMonth();

getFullYear();

Example:

let date = new Date();
let day = date.getDate();
let month = date.getMonth() 1;
let year = date.getFullYear();
console.log(year "-" month "-" day); //"2021-8-4"

Summary:

This article introduces the basic methods and array methods commonly used in JavaScript , string methods, object methods and date methods, and corresponding examples are given, hoping to be helpful to readers. Of course, there are far more methods in JavaScript than these. If you want to learn more, it is recommended to consult more documents or reference books and practice them.

The above is the detailed content of javascript various methods. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is useEffect? How do you use it to perform side effects?What is useEffect? How do you use it to perform side effects?Mar 19, 2025 pm 03:58 PM

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Explain the concept of lazy loading.Explain the concept of lazy loading.Mar 13, 2025 pm 07:47 PM

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code?What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code?Mar 18, 2025 pm 01:44 PM

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

How does currying work in JavaScript, and what are its benefits?How does currying work in JavaScript, and what are its benefits?Mar 18, 2025 pm 01:45 PM

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

How does the React reconciliation algorithm work?How does the React reconciliation algorithm work?Mar 18, 2025 pm 01:58 PM

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

What is useContext? How do you use it to share state between components?What is useContext? How do you use it to share state between components?Mar 19, 2025 pm 03:59 PM

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

How do you prevent default behavior in event handlers?How do you prevent default behavior in event handlers?Mar 19, 2025 pm 04:10 PM

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

What are the advantages and disadvantages of controlled and uncontrolled components?What are the advantages and disadvantages of controlled and uncontrolled components?Mar 19, 2025 pm 04:16 PM

The article discusses the advantages and disadvantages of controlled and uncontrolled components in React, focusing on aspects like predictability, performance, and use cases. It advises on factors to consider when choosing between them.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)