Answers for "how to make a array with a whole bunch of of words"

2

how to add up all numbers in an array

var numbers = [10, 20, 30, 40] 
var sum = 0;
for (var i = 0; i < numbers.length; i++) {  sum += numbers[i]}
Posted by: Guest on March-23-2020
0

how to get individual words from a string in java

{
public static void main(String args[])
{
String str = "Hey this is Ram";
String [] words = str. split(" ", 3);
for (String word : words)
System. out. println(word);
Posted by: Guest on May-10-2020

Code answers related to "how to make a array with a whole bunch of of words"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language