parameter tag

13 questions


1 answers
57 views
0
JavaScript Parameter Question (Chorin...)

1. function nightDayHandler(self){ let selectorBody=document.querySelector('body'); let selectorAll_A=document.querySelectorAll('a'); function setColor(color){ let i=0; while(i<selectorAll_A....

2 years ago

1 answers
58 views
0
Question about using C pointer array as a parameter

#include <stdio.h>int strO (char* myStr[]) { char str[] = hello; myStr[0] = str; // < Part to be modified? return 0;}int main() { char* string_list[10] = {NULL}; strO(string_list); printf(%s\...


1 answers
100 views
0
I want to return several return values and call them and use them, but there is an error. TypeError: 'Tuple' object is not callable

I'd like to call the return value of the five ticker and use itTypeError: 'Tuple' object is not callable error.(ticker_head = ticker_head() on the last line.No matter how much I search Google, I don't...

« - 2 -

© 2024 OneMinuteCode. All rights reserved.