Tag: execution

Bartz: Yahoo Has Execution Problem

At Yahoo’s annual shareholder meeting, Chief Executive Carl Bartz said the company had "nothing to say" about any potential deal with Microsoft and asked investors to be patient as she works to overhaul the company.
"If we ever have a deal with Microsoft, it will be announced publicly and until we do, we have nothing to say," said Bartz said at the meeting in Santa Clara, Calif.

Optimizing JavaScript for Execution Speed

JavaScript can benefit from many of the same speed-optimization techniques that are used in other languages, like C1,2 and Java. Algorithms and data structures, caching frequently used values, loop unrolling and hoisting, removing tail recursion, and strength-reduction techniques all have a place in your JavaScript optimization toolbox. However, how you interact with the Document Object Model (DOM) in large part determines how efficiently your code executes.

Back To Top