Posts by Mizukearo • 73 points
6 posts
-
0
votes0
answers69
viewsQ: How do I keep changes made by the browser console?
Hi, I was looking at the code of some websites on the Internet through the console and making some changes to see what was going on, and it got to the point where I wanted to save all these changes,…
-
2
votes3
answers90
viewsQ: Is it possible to use functions within a condition?
I was going through some websites when I came across the following excerpt: if (console.log(i), i && void 0 !== i.name) { // code here... } I tested it out: var i = {name: "mizuk"}; if…
-
1
votes1
answer608
viewsQ: How to save JSON data to hard disk? (or access it with javascript)
I am working on an application to study the syntax of languages used on the web (html, css, javascript and etc...), through a "mini-game" of questions and answers, but my problem has been how to…
-
-2
votes1
answer1047
viewsA: How do I allow online javascript execution? (google extension)
Response obtained from the link How to fix Chrome-Extension inline Javascript Invocation error? (response in the OS).…
-
4
votes2
answers350
viewsQ: How does PHP run time work?
I’ve always been interested in how long my code runs. The problem is that I don’t quite understand how the execution of PHP code works. Below are the questions: On the server, the PHP code is…
-
0
votes1
answer1047
viewsQ: How do I allow online javascript execution? (google extension)
Hello, I was mounting an extension that received urls in a form and added new fields when a button was pressed. Running as normal html the code works, but when I run as extension it returns this…