We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
实现下面这道题中的machine函数。
function machine() { } machine('ygy').execute() // start ygy machine('ygy').do('eat').execute(); // start ygy // ygy eat machine('ygy').wait(5).do('eat').execute(); // start ygy // wait 5s(这里等待了5s) // ygy eat machine('ygy').waitFirst(5).do('eat').execute(); // wait 5s // start ygy // ygy eat
来源《寒冬中的前端社招面试》
The text was updated successfully, but these errors were encountered:
No branches or pull requests
实现下面这道题中的machine函数。
来源《寒冬中的前端社招面试》
The text was updated successfully, but these errors were encountered: