Posts

Showing posts from April, 2023

hanuman ji ko khush karne ke safal tarike

Image
 JAI SHREE RAM Hanuman Chalisa ke path se : Hanuman Chalisa Hanuman Ji ki mahima gatha hai. Iske path se Hanuman Ji ka ashirvad prapt hota hai. Isliye, Hanuman Chalisa ke path se Hanuman Ji ko khush kar sakte hain. Hanuman Ji ka puja karna : Hanuman Ji ko apne ghar mein puja karne se unki kripa aapke upar bani rahti hai. Isliye, Hanuman Ji ka puja karna unko khush karne ka sabse mehtvapurn tarika hai. Hanuman Ji ka bhajan gaana : Hanuman Ji ke bhajan gaana aur unke gunon ki mahima gungaan karna unko bahut khush karta hai. Hanuman Jayanti ka tyohar manana: Hanuman Jayanti Hanuman Ji ke janamotsav ka tyohar hai. Is din unko prasann karne ke liye bhajan, kirtan aur pooja ki jaati hai. Hanuman Ji ki katha sunna : Hanuman Ji ki katha sunna aur unki mahima ke baare mein jaan-na unko bahut khush karta hai. Hanuman Ji ke liye daan karna: Hanuman Ji ko khush karne ke liye unke liye kuch daan karna bhi bahut mahatvapurn hai. Isse aap unke ashirvad ka anubhav kar sakte hain. Hanuman Ji ki aarti

Nostalgia : All 90's and 2000's cartoons and kids shows

There are many nostalgic cartoons from the 90s and 2000s that are beloved by those who grew up watching them. Here are some of the most popular ones: Rugrats (1991-2004) Doug (1991-1999) The Powerpuff Girls (1998-2005) Dexter's Laboratory (1996-2003) Hey Arnold! (1996-2004) The Simpsons (1989-present) Animaniacs (1993-1998) Batman: The Animated Series (1992-1995) Teenage Mutant Ninja Turtles (1987-1996) SpongeBob SquarePants (1999-present) The Ren & Stimpy Show (1991-1996) Johnny Bravo (1997-2004) Tom and Jerry Kids (1990-1994) Cow and Chicken (1997-1999) Pinky and the Brain (1995-1998) Looney Tunes (1930-present) The Wild Thornberrys (1998-2004) Rocket Power (1999-2004) The Fairly OddParents (2001-2017) Ed, Edd n Eddy (1999-2009) Rugrats (1991-2004) Doug (1991-1999) The Powerpuff Girls (1998-2005) Dexter's Laboratory (1996-2003) Hey Arnold! (1996-2004) The Simpsons (1989-present) Animaniacs (1993-1998) Batman: The Animated Series (1992-1995) Teenage Mutant Ninja Turtles (1

How do I make an HTTP request in Javascript?

  To make an HTTP request in JavaScript, you can use the fetch() API, which is built into modern browsers. Here's an example: javascript Copy code fetch ( 'https://example.com/api/data' ) . then ( response => response. json ()) . then ( data => console . log (data)) . catch ( error => console . error (error)); In this example, we're sending a GET request to https://example.com/api/data and expecting a JSON response. The fetch() function returns a Promise that resolves with a Response object. We can then use the json() method on the Response object to extract the JSON data. You can also customize the request by passing additional options to the fetch() function. For example, to send a POST request with data, you can do: javascript Copy code fetch ( 'https://example.com/api/data' , { method : 'POST' , body : JSON . stringify ({ foo : 'bar' }), headers : { 'Content-Type' : 'application/json'