Message from JavaScript discussions
June 2018
— It’s a problem I have to figure out, unique to JS, caused by how I am doing context switching. Each kernel component reveals what I named the dispatchIterator interface, which generally take the form of infinite iterators that implicitly time-step work, and encapsulate the work so that the caller doesn’t need to know implementation details to run deferred work
The way I have it set up now, at a minimum there are about 5 layers of these dispatchers, each adding overhead to a context switch. Each one yields, in order, until the kernel has control of V8, which means they all get dumped to the memory heap, but this gets done a lot, so there is a lot of stress on memory, which is typical of exokernels like this one
— With the preemtpion source code pre-processor in place, I could be looking at a GeneratorFunction “call stack” which is extremely high
— :/
— Permiisi disini ada yg paham cara penggunaan google tag manager?
— Https://youtu.be/M3BM9TB-8yA
— Hi, how can easily get country iso code 2 using geolocation information ?
— Why not use IP?
— It's can be a fake ip, I don't know how to do it with IP address. Please can you explain it to me ?
— Search for GeoIP
— Guys i have array of objects when i am comparing object which is same as object in array its returning false any idea why?
ps: not using strict check
—
a = [{a:3},{b:3}]
b = {a:3}
console.log(a[0] == b)
returns false