Ask Your Question
2

What is the method for providing a string value to a function in Javascript?

asked 2023-07-15 11:49:16 +0000

lalupa gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-07-15 12:15:02 +0000

scrum gravatar image

To provide a string value to a function in Javascript, you can declare a variable with a string value and pass it as an argument to the function.

For example, if you have a function called greet that takes a string parameter name and returns a greeting message, you can provide a string value to it as follows:

function greet(name) {
  return "Hello, " + name + "!";
}

let myName = "Alice";
let greeting = greet(myName);

console.log(greeting); // Output: "Hello, Alice!"

In this example, the greet function takes a string parameter name and concatenates it with the greeting message "Hello, ". The myName variable is set to the string value "Alice", which is then passed as an argument to the function using greet(myName). The function returns the greeting message "Hello, Alice!", which is stored in the greeting variable. Finally, the message is printed to the console using console.log(greeting).

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-15 11:49:16 +0000

Seen: 10 times

Last updated: Jul 15 '23