python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How does import really work in Javascript
I am having trouble understanding how import works in Javascript. Is it not supposed to just import the named function.
Here are my 2 files -
test.js -
export const add = (a,b) => {
return a+b
...
cmeitester
Votes: 0
Answers: 1
How do I export text to/access text from another file in React Native?
In an AuthProvider.js, I have the following code written to catch and log errors in the console.
export const AuthProvider = ({children}) => {
const [user, setUser] = useState(null);
const ...
faz919
Votes: 0
Answers: 1
How to make a loop with 3 variables and to export files
I have been trying to make a loop for 3 variables that must add 1 to each other, but these variables must change in intervals of 0.1, as long as, they do not exceed the sum of 1.
In addition, I have a...
Roz
Votes: 0
Answers: 1
How to refresh a csv export in Python every second?
I have this code for python that looks up an API key and writes into a file the findings.
How can I make this refresh the contents of the file every one second?
import requests
import csv
r = request...
Rasbid
Votes: 0
Answers: 1