script tag

1639 questions


1 answers
435 views
0
If I studied JavaScript for a week and I can't even solve the string output problem, should I close it

I'm going to do a coding test like this..When given => ?Enter => ?Return => returnOutput => console.log()It came out like this, but I don't think I understood the problem method yet.Please...

1 years ago

1 answers
408 views
0
Coding Test Exercise - Control Jet Problem Question

A string containing a number and a Z separated by a space is given. You want to add numbers in a string in turn. If you get a Z at this point, it means subtracting the number that you just added. Give...

1 years ago

1 answers
389 views
0
A program for determining that bingo of a word bingo of a game in which each square of a game called a bingo game is arranged into a word (word) instead of a number is achieved (called a winning condition).

I'm a fledgling engineer.I don't know how to write a program that determines that a word bingo has been achieved (hereinafter referred to as victory conditions). It's not a normal number bingo game, i...

1 years ago

1 answers
364 views
0
SpeechSynthesis.getVoices() cannot retrieve available audio

I ran getVoices() of the Web Speech API with the following code in chrome, but it returned with an empty array.How can I get it?const voice=speechSynthesis.getVoices();console.log(voice);<·[]// Con...


1 answers
546 views
0
Scrap text information after the "View More" button when searching in the Yahoo! News search window

Scrap text information after the View More button on the web pageIt will be almost the same as here, but I would like to ask you a similar question because I couldn't solve it by myself.I'm trying to ...

1 years ago

1 answers
439 views
0
Error in TypeScript/jest combination

We are building an environment to test TypeScript alone with jest, but we do not know what to do with the following error.ttests/index.test.ts は is empty.FAIL tests/index.test.ts ● Test suite failed t...

1 years ago

1 answers
468 views
0
I want to create an array of sequences from "1" to a specified number.

const createNum=(maxNum)=>{constary_result=[];for (let index=1; index<maxNum;index++){ aary_result.push(index); if(index===maxNum){ returnary_result; }}};console.log(createNum(100));// result//...

1 years ago

1 answers
377 views
0
How much load does site auto-reload on the server?

I am thinking of automatically reloading the main screen with JavaScript once every 10 minutes on a site created by JavaEE.In that case, I think it will put a load on the server like the F5 attack.I a...

1 years ago

1 answers
292 views
0
Related to Arduino communication through node.js with html/javascript

First of all, I am a beginner who started JavaScript with personal study for about a month.I've been scratching and studying here and there to make a web controller, and I put a function in the button...

1 years ago

1 answers
325 views
0
I want to create computational properties for 2D arrays with Vue's computed

I am currently practicing Vue3 code (Composition API).The purpose is to find the product (only practice) in the calculation properties if there is an array similar to the following:I just don't know h...

1 years ago
- 1 - »

© 2024 OneMinuteCode. All rights reserved.