can anyone send me the javascript material or any link for material?

Dani AI

Generated

The thread shows asking for "javascript material" while flagged the question as vague and pointed out it was posted in a C# area. Requests that include current experience, target environment (browser vs Node), and desired depth (quick intro vs deep dive) get much more useful pointers.

A compact set of reliable resources:

A practical learning path: core syntax and types, functions and closures, DOM/events (for browser work), ES6+ features (let/const, arrow functions, modules), and asynchronous patterns (callbacks -> Promises -> async/await). Quick tips: test snippets in the browser console or Node REPL, use linting (ESLint), and build tiny projects (todo list, fetch-based app) to reinforce learning.

Example of modern async fetch (browser or Node 18+):

async function getJson(url) {
  const res = await fetch(url);
  return res.json();
}

Given the original posts, more specific follow-up details (level, goal, environment) would lead to tailored material rather than generic link lists.

Recommended Answers

All 2 Replies

Could you be any more vague?

can anyone send me the javascript material or any link for material?

why do you ask this question in c# section? were you drunk?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.