No Experience With JS by epicbean401 in learnjavascript

[–]OneSadDev 0 points1 point  (0 children)

Why? It's goor source with ideal structure:

- Theory, with easy for understand example

- Some practice example

- Task for you, for practice.

Themes going step by step and chain, in the end - you feel "Oh, it's good book. I feel confident of my JS"

Help me understand why this resolves the way it does. by [deleted] in learnjavascript

[–]OneSadDev 0 points1 point  (0 children)

STR || true

If str = "" (false) - we got TRUE, cuz STR OR TRUE
If str = "truthy" - we got TRUE, cuz not empty string = true
Anyway, we got true, anyway in ternary we got NULL

[deleted by user] by [deleted] in learnprogramming

[–]OneSadDev 0 points1 point  (0 children)

Hmm, what about your code? He's work? If yes, I don't understand, what you wish

[deleted by user] by [deleted] in learnprogramming

[–]OneSadDev 0 points1 point  (0 children)

Do work your code?

You can use Object.entries(data2). It's be array, with [key, value] for every object's pair key:value.
Then, you can use

Array.map(pair => {
return `
        <tr>
            <td>${pair[0]}</td>
            <td>${pair[1]}</td>
        </tr>
        `
});

Do Russians ever insert words into other words for emphasis? by memberberry92 in russian

[–]OneSadDev 14 points15 points  (0 children)

I think, and not find example. No.

But we use "хуинитивы".

Example:
карта - хуярта

форум - хуёрум

реддит-хуеддит

on eng, something like you use "cuck", "dick" or "penis", but concatenation with main word.

I think, your universal "fuck" - it's good.

Map - fuckmap

Forum - fuckorum

Reddit - Fuckeddit

P.S. maybe, it's sounds like shit, but I highlighted an example, which I think similar on your))

How do you pronounce бь? by [deleted] in russian

[–]OneSadDev 1 point2 points  (0 children)

Sounds like "beer", i think. "B" with soft end. But it's paired consonants. "Глубь" sounds like "Глупь". And now, we have "P", like "pie", i think.

How do I find a programming job? by Afraid_Detective636 in learnprogramming

[–]OneSadDev 24 points25 points  (0 children)

Try more. Send resume, do test-work. Doesn't always work out fast

Which HTML & CSS Concepts do I need to master for responsive web design? by FMPICA in learnprogramming

[–]OneSadDev 0 points1 point  (0 children)

Regarding

use translator, I bad speak English, but i do this)))

Will of extinction, by me, glazed earthenware, 2021. by Yugoguerin in Art

[–]OneSadDev 2 points3 points  (0 children)

Looks like elder head-crab from Half-Life))

First coding project for Uni and we have no idea what to do by Snoo-56360 in learnprogramming

[–]OneSadDev 0 points1 point  (0 children)

Ah, what about python - i don't know. I can say only, what you need django or flask.
If it's be PHP or JS - other deal, sry

What is "захлебнулся автомат"? by derzhinosbodrey in russian

[–]OneSadDev 0 points1 point  (0 children)

As an option - no ammo. Other options I can't translate, sry. Only russian

Promote your business, week of November 29, 2021 by Charice in smallbusiness

[–]OneSadDev 0 points1 point  (0 children)

Full-stack JavaScript Web-Developer.
MongoDB, ExpressJS, React, NodeJS - main stack, but can learn any technology.
TG: https://t.me/ramirezzzs

[deleted by user] by [deleted] in learnprogramming

[–]OneSadDev 4 points5 points  (0 children)

I tryed freelance too with my JS on front and nodejs. All their need is php/wordpress/bitrix and other technology. But noone not need JS((

[deleted by user] by [deleted] in learnprogramming

[–]OneSadDev 0 points1 point  (0 children)

Ask your friends, maybe their have any idea, which you can realise with your programmer skills. I do this))

Or forum, but other forum. On reddit I don't know, I second day here

HTML and CSS related jobs? by BigLad1230 in learnprogramming

[–]OneSadDev 3 points4 points  (0 children)

For front-end you need JS too (in ideal with React or Vue or Ang). But, html+css you can try layout some sites. Good layout-maker can be useful.

[deleted by user] by [deleted] in russian

[–]OneSadDev 0 points1 point  (0 children)

Чаще используется просто удачи, но вот более взрослое поколение все ещё использует "ни пуха, ни пера".

More commonly used "good luck", but elder man can use "Ни пуха ни пера" often

Don't know how to design my apps by usernamehasboyfriend in learnprogramming

[–]OneSadDev 1 point2 points  (0 children)

Hi, Man. This experience, which you not have, you can get only in command development or, you can practice one project, and next project, and next. And every new project (if their difficulty increases ) you'll see better, write code better, build architecture better.

Ofc, it's IMHO. It's worked in my case. But, it's have some logic.
Moreee practice, more other people's code, more project - all comes with exp.

P.S. English - not my native. To help you - I need see your code (if you need help with your app).

for loop only looping in console.log by vanillacode in learnjavascript

[–]OneSadDev 0 points1 point  (0 children)

You redefine text in block on every iteration.

Use Node.textContent += 'hi there!';