Posts by Geraldo Henrique • 89 points
3 posts
-
5
votes2
answers5954
viewsQ: What is the difference between using toString() and JSON.stringify()?
var arr = [1,2,3]; arr.toString(); // "1,2,3" JSON.stringify(arr); // "[1,2,3]"
-
3
votes1
answer95
viewsQ: Problem in javascript variable declaration
Can anyone explain to me what the problem is with the word 'name' in Javascript? see this code: the result of the first code will say that the variable name is an object and that name is a string,…
-
0
votes1
answer90
viewsQ: Problem with css float
We created this code below to simulate the same problem on a site I’m developing to practice my html and css. I have two elements that float to the left and one to the right but when I clear the…