create a react application
npx create-react-app react-merm-app
create a react application
npx create-react-app react-merm-app
| import json | |
| # a Python object (dict): | |
| x = [{ | |
| "name": "John", | |
| "age": 30, | |
| "city": "New York" | |
| }, | |
| { | |
| "name": "sandeep", |
| import java.util.ArrayList; | |
| import java.util.List; | |
| public class InterviewQuestion { | |
| public static void main(String[] args) { | |
| int arr[] = { 2, 2, 3, 4 }; | |
| int num = 4; | |
| System.out.println("Number is: " + num + "and its count :" + countNum(arr, num)); |
| function utmLocalstorageTag() { | |
| const queryString = window.location.search; // url query string | |
| const urlParams = new URLSearchParams(queryString); // get parameters in url | |
| // get required parameters for the LocalStorage management | |
| const utm_medium_value = urlParams.get('utm_medium'); | |
| if (utm_medium_value) { | |
| const previousMediumValue = getItem("_utmMedium"); // check for previous UTM medium value in LocalStorage |