JS Loop Array
var colors = ["red","blue","green"];
for (var i = 0; i < colors.length; i++) {
console.log(colors[i]);
}
Grepper
var colors = ["red","blue","green"];
for (var i = 0; i < colors.length; i++) {
console.log(colors[i]);
}
var numbers = [22, 44, 55, 66, 77, 99];
for (var i = 0; i < numbers.length; i++) {
var num = numbers[i]
console.log(num)
}
//Output: 22,44,55 66 77 99
// Event snippet for Purchase (Google Ads - 7 day click, 1 day view) conversion page
let str = "12345.00";
str = str.substring(0, str.length - 2);
console.log(str);
// CustomerSearchResults.tsx
import * as React from "react";
import Customer from "./Customer";
interface CustomerSearchResultsProps {
customers: Customer[];
}
const CustomerSearchResults = (props: CustomerSearchResultsProps) => {
const rows = props.customers.map(customer => (
<tr key={customer.id}>
<th>{customer.id}</th>
<td>{customer.name}</td>
<td>{customer.revenue}</td>
<td>{customer.firstSale.toString()}</td>
</tr>
));
return (
<table className="table table-hover">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>Revenue</th>
<th>First Sale</th>
</tr>
</thead>
<tbody>{rows}</tbody>
</table>
);
};
export default CustomerSearchResults;
//create an array like so:
var colors = ["red","blue","green"];
//you can loop through an array like this:
for (var i = 0; i < colors.length; i++) {
console.log(colors[i]);
}