Category "javascript"

How to change network in metamask using react js

I am developing my first Dapp, I am using metamask and web3 for this. As far now, I am able to get my wallet balance and connect account to metamask. Now I am t

Jest: to check if a function is called by a specific instance of class in JavaScript/Typescript

I am testing some express middlewares with jest. it("should throw 400 error if request.body.id is null", () => { const req = { body: { id: null } } as an

Can't seem to identify the issue (splitting an array in chunks)

So this function is supposed to split the array into chunks the size of the second argument, e.g. [1, 2, 3, 4] with the second argument 2 would return [[1, 2],

How to set download url in a table row

I've this javascript function that takes the ajax call's result and build a html table with it. This table rapresents list of reports. Each row of a table is co

QUnit - Testing functions of files besides formatter.js

The example given by UI5 of testing the formatter functions i.e. // Assert assert.strictEqual(fnIsolatedFormatter("A"), "New", "The long text for status A is co

Regex for double quotes inside string

A follow up to my previous question here. I realize I need to be more specific regarding my regex case to get an answer that works for my case. I am fighting w

Webos clear localStorage when uninstall

I'm developing a webOs app with vanilla JavaScript. The app don't pass the LG QA processing because when uninstall the app and install again the keep users toke

useSelector doesn't update value in Next.js

I have a problem, createAsyncThunk function makes request to server (axios) and then get data, after that extraReducers handle builder.addCase in it and makes s

Finding documents that fit json input in mongodb

I'm trying to do a write statement that finds all the documents that fit the JSON data fed through a form. Here's an example of what the JSON looks like. I crea

How to target each page of the pagination for adding an event in Vuejs?

< script > export default { data() { return { perPage: 3, currentPage: 1, items: [{ id: 1,

peer.id refuses to change

Here is my code, I use a live server (created with live-server in VS code) var peer = new Peer(Math.floor(Math.random()*2**16).toString(),{ host:'127.0.0.1',

Inject Javascript in BlazorWebView

i'm trying MAUI Blazor and potentially it's really cool, but i had some problems ( a lot). I want to call some javascript function to the main blazorwebview but

JS or Angular Copy Text with Image

I need to copy both text and image in single click. I tried below code. I clicked and pasted only I'm getting "clip_message" My HTML: <button id="copy" oncli

How to use map filesystem folder to debug original sources in Chromium Developer Tools

I have a website running at https://somewebsite.com/. It references a compiled javascript file: /js/site.js mapping file is also available on the server /js/sit

Javascript: Object method - why do I need parentheses?

I am learning javascript and Ive stumbled upon issue that I do not understand. Could somebody explain to me why in method compareDNA I need to use parentheses w

how can customize antd datepicker footer?

I am working with Antd datepicker and I want to customize its footer like this. How can I do this using css? releated sandbox: https://codesandbox.io/s/customi

angular and rxjs - removing properties from object

I have an endpoint that returns the following object properties: { "id": "1", "department": "sample", "address": "sample", "email": "[email protected]",

with put request data dosent update in ui without reload page

i have an issue .i am doing a project where want to update quantity of product.i am able to sending updated data to database with put request but my ui desent

Transform JSON into required format

Here is my input JSON [ { "date": { "value": "2022-05-01" }, "parent": { "value":

How to find a dynamic node class by pattern in JavaScript

I'm working on this WP plugin and I've been trying to get the ID of a custom post kinda thing that is declared in the body class on each page. So it goes like t